]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/921112-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 921112-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/921112-1.c b/gcc/testsuite/gcc.c-torture/execute/921112-1.c
deleted file mode 100644 (file)
index 5946398..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-union u {
-  struct { int i1, i2; } t;
-  double d;
-} x[2], v;
-
-f (x, v)
-     union u *x, v;
-{
-  *++x = v;
-}
-
-main()
-{
-  x[1].t.i1 = x[1].t.i2 = 0;
-  v.t.i1 = 1;
-  v.t.i2 = 2;
-  f (x, v);
-  if (x[1].t.i1 != 1 || x[1].t.i2 != 2)
-    abort ();
-  exit (0);
-}