]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/cpp/paste9.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / cpp / paste9.c
diff --git a/gcc/testsuite/gcc.dg/cpp/paste9.c b/gcc/testsuite/gcc.dg/cpp/paste9.c
deleted file mode 100644 (file)
index 35c86b4..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-/* Copyright (C) 2000 Free Software Foundation, Inc.  */
-
-/* { dg-do run } */
-/* { dg-options "" } */
-
-/* Apparently older preprocessors used to fail this test.  */
-
-#include <string.h>
-
-extern void abort (void);
-
-#define S(str, args...) "  " str "\n", ##args
-
-int
-main()
-{
-  const char *s = S("foo");
-
-  if (strchr (s, '\n') == NULL)
-    abort ();
-
-  return 0;
-}