OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / other / error27.C
1 // PR c++/35332
2 // { dg-do compile }
3 // { dg-options "-fno-finite-math-only" { target sh*-*-* } }
4
5 void foo (double x, double y)
6 {
7   __builtin_isgreater(x, y)();          // { dg-error "__builtin_\[^\n\]*cannot be used as a function" }
8   __builtin_isless(x, y)();             // { dg-error "__builtin_\[^\n\]*cannot be used as a function" }
9   __builtin_isgreaterequal(x, y)();     // { dg-error "__builtin_\[^\n\]*cannot be used as a function" }
10   __builtin_islessequal(x, y)();        // { dg-error "__builtin_\[^\n\]*cannot be used as a function" }
11   __builtin_isunordered(x, y)();        // { dg-error "__builtin_\[^\n\]*cannot be used as a function" }
12   __builtin_islessgreater(x, y)();      // { dg-error "__builtin_\[^\n\]*cannot be used as a function" }
13 }