* tree-ssa-loop-manip.c (split_loop_exit_edge): Return the new block.
[official-gcc.git] / gcc / testsuite / gcc.dg / func-outside-2.c
blob60a6c144c725b2dd5e3c9969baeaa084025487e6
1 /* Test for rejection of __func__ outside a function (GNU extensions
2 are OK there). Test with -pedantic-errors. */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "-pedantic-errors" } */
7 const char *a = __func__; /* { dg-error "error: '__func__' is not defined outside of function scope" "undef" } */
8 const char *b = __FUNCTION__;
9 const char *c = __PRETTY_FUNCTION__;