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.dg/] [pr19984.c] - Rev 315
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR c/19984 */ /* { dg-do compile } */ /* { dg-options "-O2 -std=c99" } */ double nan (const char *); const double nok = nan (""); /* { dg-warning "(not a constant)|(near initialization)" } */ const double ok = __builtin_nan (""); double foo () { double ok2 = nan (""); return ok2; }
Go to most recent revision | Compare with Previous | Blame | View Log