mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-02 16:56:50 +00:00
7aed4ec957
of checking for either 4 or 8 is not very satisfactory, but it would catch the original problem (an alignment of 1). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113485 91177308-0d34-0410-b5e6-96231b3b80d8
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;
|
|
}
|