mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
4a66e8e24d
of checking for either 4 or 8 is not very satisfactory, but it would catch the original problem (an alignment of 1). llvm-svn: 113485
15 lines
260 B
C
15 lines
260 B
C
// RUN: %llvmgcc %s -emit-llvm -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;
|
|
}
|