aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/cpp/trad/paste.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/cpp/trad/paste.c')
-rw-r--r--gcc/testsuite/gcc.dg/cpp/trad/paste.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/gcc/testsuite/gcc.dg/cpp/trad/paste.c b/gcc/testsuite/gcc.dg/cpp/trad/paste.c
deleted file mode 100644
index 9f1c0db3291..00000000000
--- a/gcc/testsuite/gcc.dg/cpp/trad/paste.c
+++ /dev/null
@@ -1,16 +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 } */
-
-#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); }