
Conversion performed using the script at: https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34 These are only tests where no manual fixup was required.
15 lines
263 B
C
15 lines
263 B
C
// RUN: %clang_cc1 %s -triple x86_64-apple-darwin -emit-llvm -o - | FileCheck %s
|
|
// PR 5995
|
|
struct s {
|
|
int word;
|
|
struct {
|
|
int filler __attribute__ ((aligned (8)));
|
|
};
|
|
};
|
|
|
|
void func (struct s *s)
|
|
{
|
|
// CHECK: load ptr, ptr{{.*}}align 8
|
|
s->word = 0;
|
|
}
|