]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/931031-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 931031-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/931031-1.c b/gcc/testsuite/gcc.c-torture/execute/931031-1.c
deleted file mode 100644 (file)
index 7619890..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-struct foo
-{
-  unsigned y:1;
-  unsigned x:32;
-};
-
-int
-f (x)
-     struct foo x;
-{
-  int t = x.x;
-  if (t < 0)
-    return 1;
-  return t+1;
-}
-
-main ()
-{
-  struct foo x;
-  x.x = -1;
-  if (f (x) == 0)
-    abort ();
-  exit (0);
-}