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, 0 insertions, 13 deletions
diff --git a/test/FrontendC/2007-02-04-AddrLValue-2.c b/test/FrontendC/2007-02-04-AddrLValue-2.c deleted file mode 100644 index fa20faf..0000000 --- a/test/FrontendC/2007-02-04-AddrLValue-2.c +++ /dev/null @@ -1,13 +0,0 @@ -// RUN: %llvmgcc %s -O3 -S -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; -} |