mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +00:00
An stdcall function calling a non-stdcall function
cannot use tailcall. PR 8461. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117322 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
87c5c2f069
commit
d155d7e428
@ -2532,6 +2532,11 @@ X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
|
||||
}
|
||||
}
|
||||
|
||||
// An stdcall caller is expected to clean up its arguments; the callee
|
||||
// isn't going to do that. PR 8461.
|
||||
if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
13
test/CodeGen/X86/stdcall-notailcall.ll
Normal file
13
test/CodeGen/X86/stdcall-notailcall.ll
Normal file
@ -0,0 +1,13 @@
|
||||
; RUN: llc -mtriple=i386-apple-darwin11 -O2 < %s | FileCheck %s
|
||||
|
||||
%struct.I = type { i32 (...)** }
|
||||
define x86_stdcallcc void @bar(%struct.I* nocapture %this) ssp align 2 {
|
||||
; CHECK: bar:
|
||||
; CHECK-NOT: jmp
|
||||
; CHECK: ret $4
|
||||
entry:
|
||||
tail call void @foo()
|
||||
ret void
|
||||
}
|
||||
|
||||
declare void @foo()
|
Loading…
Reference in New Issue
Block a user