]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/unsorted/bfins.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / unsorted / bfins.c
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/bfins.c b/gcc/testsuite/gcc.c-torture/unsorted/bfins.c
deleted file mode 100644 (file)
index e626d82..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-struct foo
-{
-  unsigned j : 16;
-  unsigned i : 16;
-};
-
-struct foo
-foo (a, b)
-     struct foo a;
-     int b;
-{
-  a.j = 123;
-  a.i = b;
-  return a;
-}