diff options
Diffstat (limited to 'test/FrontendC/2007-02-04-AddrLValue-2.c')
-rw-r--r-- | test/FrontendC/2007-02-04-AddrLValue-2.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/FrontendC/2007-02-04-AddrLValue-2.c b/test/FrontendC/2007-02-04-AddrLValue-2.c new file mode 100644 index 0000000..90251e6 --- /dev/null +++ b/test/FrontendC/2007-02-04-AddrLValue-2.c @@ -0,0 +1,13 @@ +// RUN: %llvmgcc %s -O3 -S -o - -emit-llvm +// 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; +} |