Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / func-outside-1.c
blob61c343bc8fe0355248ade95cdc2b3046de015dba
1 /* Test for rejection of __func__ outside a function (GNU extensions
2 are OK there). Test with no special options. */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "" } */
7 const char *a = __func__; /* { dg-warning "warning: '__func__' is not defined outside of function scope" "undef" } */
8 const char *b = __FUNCTION__;
9 const char *c = __PRETTY_FUNCTION__;