]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/unsorted/bitf.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / unsorted / bitf.c
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/bitf.c b/gcc/testsuite/gcc.c-torture/unsorted/bitf.c
deleted file mode 100644 (file)
index 5b0aefc..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#define int unsigned
-
-struct foo
-{
-  int aa : 1;
-  int a : 9;
-  int c : 16;
-  int d : 6;
-};
-
-
-int
-foo (a, b)
-     struct foo a;
-{
-  return a.d == 0;
-}