URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [Wcxx-compat-12.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-fno-short-enums -Wc++-compat" } */ enum E { A }; enum E v; unsigned int *p = &v; /* { dg-warning "incompatible in C\[+\]\[+\]" } */ void foo(unsigned int); void (*pfn)(enum E) = &foo; /* { dg-warning "incompatible in C\[+\]\[+\]" } */
Go to most recent revision | Compare with Previous | Blame | View Log