]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.jason/warning10.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / warning10.C
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 (file)
index 04b923b..0000000
+++ /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;
-}