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/] [20031003-1.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR optimization/9325 */ #include <limits.h> extern void abort (void); int f1() { return (int)2147483648.0f; } int f2() { return (int)(float)(2147483647); } int main() { #if INT_MAX == 2147483647 if (f1() != 2147483647) abort (); #ifdef __SPU__ /* SPU float rounds towards zero. */ if (f2() != 0x7fffff80) abort (); #else if (f2() != 2147483647) abort (); #endif #endif return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log