]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/bf-sign-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / bf-sign-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/bf-sign-1.c b/gcc/testsuite/gcc.c-torture/execute/bf-sign-1.c
deleted file mode 100644 (file)
index 3cc3eac..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-main ()
-{
-  struct  {
-    signed int s:3;
-    unsigned int u:3;
-    int i:3;
-  } x = {-1, -1, -1};
-
-  if (x.u != 7)
-    abort ();
-  if (x.s != - 1)
-    abort ();
-
-  if (x.i != -1 && x.i != 7)
-    abort ();
-
-  exit (0);
-}