Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / qual-return-2.c
blob22a1946b03fe477e67ed6e409f48a735cb974c92
1 /* Test for warnings for qualified function return types. -pedantic test. */
2 /* Origin: Joseph Myers <jsm28@cam.ac.uk> */
3 /* { dg-do compile } */
4 /* { dg-options "-pedantic" } */
6 /* Qualifying a function return type makes no sense. */
8 /* The first two of these shouldn't warn (with just -pedantic) as long
9 as the function is not defined. */
11 volatile void vvoid_fn (void);
12 volatile void (*vvoid_ptr) (void);
13 volatile void vvoid_fn2 (void) { } /* { dg-warning "qualified" "volatile defn" } */