aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/cpp/macro4.c
diff options
context:
space:
mode:
authorNeil Booth <neil@daikokuya.demon.co.uk>2001-01-20 09:34:13 +0000
committerNeil Booth <neil@gcc.gnu.org>2001-01-20 09:34:13 +0000
commit29aad310b05e15984daa2886f946dab68d1b62c2 (patch)
treeac477ab87ca8eb68fb4419d4bee0e92d3b4943a0 /gcc/testsuite/gcc.dg/cpp/macro4.c
parent673b13e2f6c1df4f23e117095437df11b35b09fc (diff)
downloadgcc-29aad310b05e15984daa2886f946dab68d1b62c2.zip
gcc-29aad310b05e15984daa2886f946dab68d1b62c2.tar.gz
gcc-29aad310b05e15984daa2886f946dab68d1b62c2.tar.bz2
* gcc.dg/cpp/macro3.c,macro4.c,strp1.c: Update.
From-SVN: r39153
Diffstat (limited to 'gcc/testsuite/gcc.dg/cpp/macro4.c')
-rw-r--r--gcc/testsuite/gcc.dg/cpp/macro4.c23
1 files changed, 6 insertions, 17 deletions
diff --git a/gcc/testsuite/gcc.dg/cpp/macro4.c b/gcc/testsuite/gcc.dg/cpp/macro4.c
index c0dfe41..ceaf8dd 100644
--- a/gcc/testsuite/gcc.dg/cpp/macro4.c
+++ b/gcc/testsuite/gcc.dg/cpp/macro4.c
@@ -1,24 +1,13 @@
/* Copyright (C) 2000 Free Software Foundation, Inc. */
-/* { dg-do run } */
+/* { dg-do preprocess } */
-/* Test source Neil Booth. GCC <= 2.96 don't get this right. */
-
-extern void abort (void);
-
-int glue (int x, int y)
-{
- return x + y;
-}
+/* Test source Neil Booth. */
#define glue(x, y) x ## y
#define xglue(x, y) glue (x, y)
-int main ()
-{
- /* Should expand to glue (1, 2) as the second "glue" is nested. */
- if (glue (xgl, ue) (1, 2) != 3)
- abort ();
-
- return 0;
-}
+/* Should expand to glue (1, 2), then 12. */
+#if glue (xgl, ue) (1, 2) != 12
+#error glue macro
+#endif