]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/930208-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 930208-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/930208-1.c b/gcc/testsuite/gcc.c-torture/execute/930208-1.c
deleted file mode 100644 (file)
index 464b69d..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-typedef union {
-  long l;
-  struct { char b3, b2, b1, b0; } c;
-} T;
-
-f (T u)
-{
-  ++u.c.b0;
-  ++u.c.b3;
-  return (u.c.b1 != 2 || u.c.b2 != 2);
-}
-
-main ()
-{
-  T u;
-  u.c.b1 = 2;
-  u.c.b2 = 2;
-  u.c.b0 = ~0;
-  u.c.b3 = ~0;
-  if (f (u))
-    abort();
-  exit (0);
-}