]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/cpp/paste11.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / cpp / paste11.c
diff --git a/gcc/testsuite/gcc.dg/cpp/paste11.c b/gcc/testsuite/gcc.dg/cpp/paste11.c
deleted file mode 100644 (file)
index 18530b3..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-/* Copyright (C) 2000 Free Software Foundation, Inc.  */
-
-/* { dg-do preprocess } */
-
-/* Test correct pasting of identifiers and numbers.  We can paste any
-   number, as long as no '.', '-' or '+' appears in its spelling.  */
-
-#define glue(x, y) x ## y
-
-glue (ident, 12)               /* OK.  */
-glue (ident, 12e3)             /* OK.  */
-glue (ident, 12e+3)            /* { dg-warning "valid preprocessing tok" } */
-glue (ident, 12e-3)            /* { dg-warning "valid preprocessing tok" } */
-glue (ident, 1.2)              /* { dg-warning "valid preprocessing tok" } */
-glue (ident, .12)              /* { dg-warning "valid preprocessing tok" } */