]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/cpp/paste8.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / cpp / paste8.c
diff --git a/gcc/testsuite/gcc.dg/cpp/paste8.c b/gcc/testsuite/gcc.dg/cpp/paste8.c
deleted file mode 100644 (file)
index dd09894..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-/* { dg-do preprocess } */
-/* { dg-options "" } */
-
-int foo(int, ...);
-
-#define a(x, y...) foo(x, ##y)
-a(1)
-a(1, 2, 3)
-#define b(x, y, z...) foo(x, ##y)
-b(1, 2, 3)                     /* { dg-warning "valid preprocessing token" } */
-#define c(x, y, z...) foo(x, ##z)
-c(1, 2)
-c(1, 2, 3)
-#define d(x) fo(##x)
-d(1)                           /* { dg-warning "valid preprocessing token" } */