diff options
Diffstat (limited to 'test/FrontendC/2010-07-14-overconservative-align.c')
-rw-r--r-- | test/FrontendC/2010-07-14-overconservative-align.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/test/FrontendC/2010-07-14-overconservative-align.c b/test/FrontendC/2010-07-14-overconservative-align.c deleted file mode 100644 index c4a9caa..0000000 --- a/test/FrontendC/2010-07-14-overconservative-align.c +++ /dev/null @@ -1,14 +0,0 @@ -// RUN: %llvmgcc %s -S -o - | FileCheck %s -// PR 5995 -struct s { - int word; - struct { - int filler __attribute__ ((aligned (8))); - }; -}; - -void func (struct s *s) -{ -// CHECK: load %struct.s** %s_addr, align {{[48]}} - s->word = 0; -} |