summaryrefslogtreecommitdiff
path: root/test/CodeGen/2007-02-04-AddrLValue-2.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/2007-02-04-AddrLValue-2.c')
-rw-r--r--test/CodeGen/2007-02-04-AddrLValue-2.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/CodeGen/2007-02-04-AddrLValue-2.c b/test/CodeGen/2007-02-04-AddrLValue-2.c
new file mode 100644
index 0000000000000..bc44d1465f473
--- /dev/null
+++ b/test/CodeGen/2007-02-04-AddrLValue-2.c
@@ -0,0 +1,13 @@
+// RUN: %clang_cc1 %s -O3 -emit-llvm -o -
+// PR1173
+
+struct S { char s; };
+struct T { struct S t; };
+
+struct S *const p = &((struct T * const) (0x4000))->t;
+
+void
+foo (void)
+{
+ p->s = 0;
+}