Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / qual-return-4.c
blob9b61cfebf126f4532a2516f25bd4727753361e65
1 /* Test for warnings for qualified function return types. -pedantic
2 test. Only the definition gets a warning for qualified void return
3 types, not other such types within the definition. */
4 /* Origin: Joseph Myers <jsm@polyomino.org.uk> */
5 /* { dg-do compile } */
6 /* { dg-options "-pedantic" } */
8 volatile void (*y)(int);
10 volatile void (*vvf(int x))(int) { return y; }