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/] [cpp/] [pr7263-3.c] - Rev 307
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR 7263: __extension__ keyword doesn't suppress warning on LL or ULL constants. */ /* { dg-do compile } */ /* { dg-options "-std=c99 -pedantic-errors" } */ #include "pr7263-3.h" __complex__ bar () /* { dg-error "ISO C does not support plain .complex. meaning .double complex." } */ { return _Complex_I_ext; } __extension__ __complex__ bar2 () { return _Complex_I; } __complex__ bar3 () /* { dg-error "ISO C does not support plain .complex. meaning .double complex." } */ { return _Complex_I; /* { dg-error "imaginary constants are a GCC extension" } */ }
Go to most recent revision | Compare with Previous | Blame | View Log