URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [enum-const-2.c] - Rev 750
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test for enumeration constants not integer constant expressions but folding to integer constants (used in Linux kernel, <http://gcc.gnu.org/ml/gcc/2009-04/msg00677.html>). */ /* { dg-do compile } */ /* { dg-options "-pedantic" } */ extern int i; enum e { E = (1 ? 1 : i) }; /* { dg-warning "not an integer constant expression" } */
Go to most recent revision | Compare with Previous | Blame | View Log