IVOPT performance tuning patch. The main problem is a variant of maximal weight
[official-gcc.git] / gcc / testsuite / gcc.dg / Wcxx-compat-12.c
bloba6094e183be73e52b9a23984afb17765c7141e0c
1 /* { dg-do compile } */
2 /* { dg-options "-Wc++-compat" } */
4 enum E { A };
6 enum E v;
7 unsigned int *p = &v; /* { dg-warning "incompatible in C\[+\]\[+\]" } */
9 void foo(unsigned int);
10 void (*pfn)(enum E) = &foo; /* { dg-warning "incompatible in C\[+\]\[+\]" } */