aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/struct-alias-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/gcc.dg/struct-alias-1.c')
-rw-r--r--gcc-4.9/gcc/testsuite/gcc.dg/struct-alias-1.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/gcc.dg/struct-alias-1.c b/gcc-4.9/gcc/testsuite/gcc.dg/struct-alias-1.c
new file mode 100644
index 000000000..6cfadcf2c
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/gcc.dg/struct-alias-1.c
@@ -0,0 +1,22 @@
+/* { 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;
+}