summaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/2007-02-04-AddrLValue-2.c
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/CodeGen/2007-02-04-AddrLValue-2.c')
-rw-r--r--clang/test/CodeGen/2007-02-04-AddrLValue-2.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/clang/test/CodeGen/2007-02-04-AddrLValue-2.c b/clang/test/CodeGen/2007-02-04-AddrLValue-2.c
new file mode 100644
index 0000000..bc44d14
--- /dev/null
+++ b/clang/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;
+}