X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fgcc.dg%2Fcpp%2Fif-cexp.c;fp=gcc%2Ftestsuite%2Fgcc.dg%2Fcpp%2Fif-cexp.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=e2af375215497369fb63c4e5d079d3bc9318b094;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/gcc.dg/cpp/if-cexp.c b/gcc/testsuite/gcc.dg/cpp/if-cexp.c deleted file mode 100644 index e2af3752..00000000 --- a/gcc/testsuite/gcc.dg/cpp/if-cexp.c +++ /dev/null @@ -1,13 +0,0 @@ -/* { dg-do preprocess } */ - -/* Test the ? : opearator, for precedence and both true and false. */ - -#if 1 ? 1 ? 2 : 0 : 0 -#error OK /* { dg-error "OK" "nested ? :" } */ -#endif - -#if ((0) ? (1) ? (2) : (3) : (4) ? (5): (6)) == 5 -#error OK /* { dg-error "OK" "nested ? : with parens" } */ -#endif - -