]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/cpp/tr-str.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / cpp / tr-str.c
diff --git a/gcc/testsuite/gcc.dg/cpp/tr-str.c b/gcc/testsuite/gcc.dg/cpp/tr-str.c
deleted file mode 100644 (file)
index 3423473..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-/* Test whether traditional stringify works.  */
-/* { dg-do run } */
-/* { dg-options "-traditional-cpp" } */
-#define foo(a, b) c="a"; d="b";
-
-extern void abort ();
-
-int main ()
-{
-  char *c, *d;
-
-  foo (p, q);
-  if (c[0] != 'p' || d[0] != 'q')
-    abort ();
-
-  exit (0);
-}