]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/cpp/tr-paste.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / cpp / tr-paste.c
diff --git a/gcc/testsuite/gcc.dg/cpp/tr-paste.c b/gcc/testsuite/gcc.dg/cpp/tr-paste.c
deleted file mode 100644 (file)
index e884e83..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-/* Test for proper comment elimination semantics from cpplib's -traditional.
-   This should compile and link with compiled with `gcc -traditional-cpp'.
-   Test case by Jason R. Thorpe <thorpej@zembu.com>.  */
-
-/* { dg-do compile } */
-/* { dg-options "-traditional-cpp" } */
-
-#define A(name) X/**/name
-
-#define B(name) \
-void A(Y/**/name)() { A(name)(); }
-
-void Xhello() { printf("hello world\n"); }
-
-B(hello)
-
-int main() { XYhello(); return (0); }