]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/931110-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 931110-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/931110-1.c b/gcc/testsuite/gcc.c-torture/execute/931110-1.c
deleted file mode 100644 (file)
index 5b33b26..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-typedef struct
-{
-  short f:3, g:3, h:10;
-} small;
-
-struct
-{
-  int i;
-  small s[10];
-} x;
-
-main ()
-{
-  int i;
-  for (i = 0; i < 10; i++)
-    x.s[i].f = 0;
-  exit (0);
-}