]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/930126-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 930126-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/930126-1.c b/gcc/testsuite/gcc.c-torture/execute/930126-1.c
deleted file mode 100644 (file)
index ff08e7d..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-struct s {
-  unsigned long long a:8, b:32;
-};
-
-struct s
-f(struct s x)
-{
-  x.b = 0xcdef1234;
-  return x;
-}
-
-main()
-{
-  static struct s i;
-  i.a = 12;
-  i = f(i);
-  if (i.a != 12 || i.b != 0xcdef1234)
-    abort();
-  exit(0);
-}