diff --git a/gcc/testsuite/gcc.dg/cpp/macro9.c b/gcc/testsuite/gcc.dg/cpp/macro9.c index f79d15c575d..ef9e3697ef5 100644 --- a/gcc/testsuite/gcc.dg/cpp/macro9.c +++ b/gcc/testsuite/gcc.dg/cpp/macro9.c @@ -8,7 +8,7 @@ immediately followed by a directive, then we process the directive properly. */ -#define int() -int -#define main main () { return 0; } -main +#define main() +int main +#define mainbody () { return 0; } +mainbody