]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/cpp/19990407-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / cpp / 19990407-1.c
diff --git a/gcc/testsuite/gcc.dg/cpp/19990407-1.c b/gcc/testsuite/gcc.dg/cpp/19990407-1.c
deleted file mode 100644 (file)
index d6da8d6..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-/* Regression test for a cpplib macro-expansion bug where
-   `@' becomes `@@' when stringified.  */
-
-/* { dg-do run } */
-
-#include <string.h>
-#include <stdlib.h>
-
-#define STR(x) #x
-
-char *a = STR(@foo), *b = "@foo";
-
-int
-main(void)
-{
-  if (strcmp (a, b))
-    abort ();
-  return 0;
-}