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/] [cvt-1.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
static inline long g1 (double x) { return (double) (long) x; } long g2 (double f) { return f; } double f (long i) { if (g1 (i) != g2 (i)) abort (); return g2 (i); } main () { if (f (123456789L) != 123456789L) abort (); if (f (123456789L) != g2 (123456789L)) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log