diff options
author | Derek Schuff <dschuff@google.com> | 2012-04-27 23:27:17 +0000 |
---|---|---|
committer | Derek Schuff <dschuff@google.com> | 2012-04-27 23:27:17 +0000 |
commit | bbf8b83e90dc1e26a705c54680a18a391638e6f0 (patch) | |
tree | ed4d3a68711af7ebd8631f6ecd19424bec0f133f /llvm/test/CodeGen/X86/fast-isel-x86.ll | |
parent | 5f0d1b462c4c774479d7567605af32c4b638ee10 (diff) | |
download | bcm5719-llvm-bbf8b83e90dc1e26a705c54680a18a391638e6f0.tar.gz bcm5719-llvm-bbf8b83e90dc1e26a705c54680a18a391638e6f0.zip |
Fix fastcc structure return with fast-isel on x86-32
On x86-32, structure return via sret lets the callee pop the hidden
pointer argument off the stack, which the caller then re-pushes.
However if the calling convention is fastcc, then a register is used
instead, and the caller should not adjust the stack. This is
implemented with a check of IsTailCallConvention
X86TargetLowering::LowerCall but is now checked properly in
X86FastISel::DoSelectCall.
llvm-svn: 155745
Diffstat (limited to 'llvm/test/CodeGen/X86/fast-isel-x86.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/fast-isel-x86.ll | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/fast-isel-x86.ll b/llvm/test/CodeGen/X86/fast-isel-x86.ll index b9598bb465c..bd5c91491e0 100644 --- a/llvm/test/CodeGen/X86/fast-isel-x86.ll +++ b/llvm/test/CodeGen/X86/fast-isel-x86.ll @@ -46,3 +46,17 @@ entry: ; CHECK: addl $40 } declare void @test3sret(%struct.a* sret) + +; Check that fast-isel sret works with fastcc (and does not callee-pop) +define void @test4() nounwind ssp { +entry: + %tmp = alloca %struct.a, align 8 + call fastcc void @test4fastccsret(%struct.a* sret %tmp) + ret void +; CHECK: test4: +; CHECK: subl $44 +; CHECK: leal 16(%esp) +; CHECK: calll _test4fastccsret +; CHECK addl $40 +} +declare fastcc void @test4fastccsret(%struct.a* sret) |