X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fgcc.dg%2Fcpp%2Fif-mop.c;fp=gcc%2Ftestsuite%2Fgcc.dg%2Fcpp%2Fif-mop.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=a6a36f150889a04a5d1b74c2b31d14954d55e92b;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/gcc.dg/cpp/if-mop.c b/gcc/testsuite/gcc.dg/cpp/if-mop.c deleted file mode 100644 index a6a36f15..00000000 --- a/gcc/testsuite/gcc.dg/cpp/if-mop.c +++ /dev/null @@ -1,25 +0,0 @@ -/* Copyright (C) 2000 Free Software Foundation, Inc. */ - -/* { dg-do preprocess } */ - -/* Source: Neil Booth. */ - -/* Various illegal expressions with missing components. */ - -#if /* { dg-error "no expression" "empty #if" } */ -#endif - -#if ~ /* { dg-error "no right op" "no unary operand" } */ -#endif - -#if 3 + * 6 + 4 /* { dg-error "no left op" "no left operand" } */ -#endif - -#if 2 ~2 /* { dg-error "missing bin" "no binary operator" } */ -#endif - -#if 1 + 2 (3) /* { dg-error "missing bin" "immediate then open paren" } */ -#endif - -#if (2) 4 * 2 /* { dg-error "missing bin" "close paren then immediate" } */ -#endif