aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/990407-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/990407-1.c')
-rw-r--r--gcc/testsuite/gcc.dg/990407-1.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc/testsuite/gcc.dg/990407-1.c b/gcc/testsuite/gcc.dg/990407-1.c
deleted file mode 100644
index 96b3f862639..00000000000
--- a/gcc/testsuite/gcc.dg/990407-1.c
+++ /dev/null
@@ -1,18 +0,0 @@
-/* Regression test for a cpplib macro-expansion bug where
- `@' becomes `@@' when stringified. */
-
-/* { dg-do run } */
-
-#include <string.h>
-
-#define STR(x) #x
-
-char *a = STR(@foo), *b = "@foo";
-
-int
-main(void)
-{
- if (strcmp (a, b))
- abort ();
- return 0;
-}