URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [c-c++-common/] [cpp/] [pr45457.c] - Rev 724
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR preprocessor/45457 */ /* { dg-do compile } */ const char *a = #ifdef __DBL_DENORM_MIN__ "a" #endif #if defined(__DBL_EPSILON__) "b" #endif #ifndef __DBL_MAX__ "c" #endif #if !defined(__DBL_MIN__) "d" #endif ; double b = __DBL_DENORM_MIN__ + __DBL_EPSILON__ + __DBL_MAX__ + __DBL_MIN__;
Go to most recent revision | Compare with Previous | Blame | View Log