X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fgcc.dg%2Fcpp%2Fpaste11.c;fp=gcc%2Ftestsuite%2Fgcc.dg%2Fcpp%2Fpaste11.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=18530b3448ad64fc23d547c3f2cffb8973c2f967;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/gcc.dg/cpp/paste11.c b/gcc/testsuite/gcc.dg/cpp/paste11.c deleted file mode 100644 index 18530b34..00000000 --- a/gcc/testsuite/gcc.dg/cpp/paste11.c +++ /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" } */