URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20040831-1.c] - Rev 297
Compare with Previous | Blame | View Log
/* This testcase was being miscompiled, because operand_equal_p returned that (unsigned long) d and (long) d are equal. */ extern void abort (void); extern void exit (int); int main (void) { double d = -12.0; long l = (d > 10000) ? (unsigned long) d : (long) d; if (l != -12) abort (); exit (0); }