llvm-6502/test/FrontendC/2010-07-14-overconservative-align.c
Dale Johannesen be876e3a90 Tests for llvm-gcc commit 108360.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108362 91177308-0d34-0410-b5e6-96231b3b80d8
2010-07-14 21:22:35 +00:00

15 lines
258 B
C

// RUN: %llvmgcc %s -emit-llvm -m64 -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 8
s->word = 0;
}