X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.jason%2Fwarning10.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.jason%2Fwarning10.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=04b923b6a9b22be6c62ad363e78b9aa41a88abc2;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.jason/warning10.C b/gcc/testsuite/g++.old-deja/g++.jason/warning10.C deleted file mode 100644 index 04b923b6..00000000 --- a/gcc/testsuite/g++.old-deja/g++.jason/warning10.C +++ /dev/null @@ -1,19 +0,0 @@ -// Don't warn about these comparisons. -// Build don't link: -// Special g++ Options: -W -Wall - -struct A { - unsigned int b : 14; -}; - -int f (int i, unsigned char u, A a, unsigned long ul) -{ - if ((u & 0x10) == 0) - return 1; - if (i == 0U) - return 1; - if (a.b > ul) - return 1; - - return 0; -}