aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite')
-rw-r--r--gcc/testsuite/gcc.dg/cpp/macro9.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/gcc.dg/cpp/macro9.c b/gcc/testsuite/gcc.dg/cpp/macro9.c
index f79d15c..ef9e369 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