URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [enum-const-3.c] - Rev 689
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-errors" } */ extern int i; enum e { E = (1 ? 1 : i) }; /* { dg-error "not an integer constant expression" } */