]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/struct-alias-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / struct-alias-1.c
diff --git a/gcc/testsuite/gcc.dg/struct-alias-1.c b/gcc/testsuite/gcc.dg/struct-alias-1.c
deleted file mode 100644 (file)
index 6cfadcf..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-/* { dg-do link } */
-/* { dg-options "-O2" } */
-
-struct S {
-   int a[3];
-   int x;
-};
-
-extern void link_error(void);
-static int i;
-
-int main()
-{
-  struct S s;
-
-  s.x = 0;
-  s.a[i] = 1;
-  if (s.x != 0)
-    link_error ();
-
-  return 0;
-}