URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [gcc.dg/] [unordered-1.c] - Rev 12
Compare with Previous | Blame | View Log
/* { dg-do compile } */ void bar (int); void foo (int i, float f) { bar (__builtin_isgreater (i, i)); /* { dg-error "non-floating-point" } */ bar (__builtin_isgreater (f, i)); bar (__builtin_isgreater (i, f)); bar (__builtin_isgreater (f, 2)); bar (__builtin_isgreater (f, 2.0f)); bar (__builtin_isgreater (f, 2.0)); bar (__builtin_isgreater (2, f)); bar (__builtin_isgreater (2.0f, f)); bar (__builtin_isgreater (2.0, f)); bar (__builtin_isgreater (&f, i)); /* { dg-error "non-floating-point" } */ bar (__builtin_isgreater (f, &i)); /* { dg-error "non-floating-point" } */ }