diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-09-16 20:42:06 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-09-16 20:42:06 +0000 |
commit | e59d8585bb40a8bae6b847ad258536a2c01f20ea (patch) | |
tree | 6b0e92b4821daf71e640e55780a2c755f1d6d23f /test/CodeGen/x86_32-arguments-linux.c | |
parent | cf3b6f2504596812db1fcef0df8ce5b3449c4aac (diff) | |
download | clang-e59d8585bb40a8bae6b847ad258536a2c01f20ea.tar.gz |
IRgen/ABI/x86-32: Realign indirect arguments when the ABI requires us to pass
them with a smaller alignment than the rest of codegen expects.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@114115 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/x86_32-arguments-linux.c')
-rw-r--r-- | test/CodeGen/x86_32-arguments-linux.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/test/CodeGen/x86_32-arguments-linux.c b/test/CodeGen/x86_32-arguments-linux.c index 31b184c37e..0e3a05cbf8 100644 --- a/test/CodeGen/x86_32-arguments-linux.c +++ b/test/CodeGen/x86_32-arguments-linux.c @@ -3,21 +3,21 @@ // CHECK: define void @f56( // CHECK: i8 signext %a0, %struct.s56_0* byval %a1, -// CHECK: <2 x i32> %a2, %struct.s56_1* byval %a3, -// CHECK: <1 x double> %a4, %struct.s56_2* byval %a5, -// CHECK: <4 x i32> %a6, %struct.s56_3* byval %a7, -// CHECK: <2 x double> %a8, %struct.s56_4* byval %a9, -// CHECK: <8 x i32> %a10, %struct.s56_5* byval %a11, -// CHECK: <4 x double> %a12, %struct.s56_6* byval %a13) +// CHECK: <2 x i32> %a2, %struct.s56_1* byval align 4, +// CHECK: <1 x double> %a4, %struct.s56_2* byval align 4, +// CHECK: <4 x i32> %a6, %struct.s56_3* byval align 4, +// CHECK: <2 x double> %a8, %struct.s56_4* byval align 4, +// CHECK: <8 x i32> %a10, %struct.s56_5* byval align 4, +// CHECK: <4 x double> %a12, %struct.s56_6* byval align 4) // CHECK: call void (i32, ...)* @f56_0(i32 1, // CHECK: i32 %{{.*}}, %struct.s56_0* byval %{{[^ ]*}}, -// CHECK: <2 x i32> %{{[^ ]*}}, %struct.s56_1* byval %{{[^ ]*}}, -// CHECK: <1 x double> %{{[^ ]*}}, %struct.s56_2* byval %{{[^ ]*}}, -// CHECK: <4 x i32> %{{[^ ]*}}, %struct.s56_3* byval %{{[^ ]*}}, -// CHECK: <2 x double> %{{[^ ]*}}, %struct.s56_4* byval %{{[^ ]*}}, -// CHECK: <8 x i32> %{{[^ ]*}}, %struct.s56_5* byval %{{[^ ]*}}, -// CHECK: <4 x double> %{{[^ ]*}}, %struct.s56_6* byval %{{[^ ]*}}) +// CHECK: <2 x i32> %{{[^ ]*}}, %struct.s56_1* byval align 4 %{{[^ ]*}}, +// CHECK: <1 x double> %{{[^ ]*}}, %struct.s56_2* byval align 4 %{{[^ ]*}}, +// CHECK: <4 x i32> %{{[^ ]*}}, %struct.s56_3* byval align 4 %{{[^ ]*}}, +// CHECK: <2 x double> %{{[^ ]*}}, %struct.s56_4* byval align 4 %{{[^ ]*}}, +// CHECK: <8 x i32> %{{[^ ]*}}, %struct.s56_5* byval align 4 %{{[^ ]*}}, +// CHECK: <4 x double> %{{[^ ]*}}, %struct.s56_6* byval align 4 %{{[^ ]*}}) // CHECK: } // // <rdar://problem/7964854> [i386] clang misaligns long double in structures |