mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-05 03:36:43 +00:00
BAD typeo which caused many testsuite failures last night. Note to self, do
not change code after testing it without retesting! llvm-svn: 21741
This commit is contained in:
parent
1bc2753d69
commit
c9be572154
@ -50,7 +50,7 @@ bool llvm::InlineFunction(CallSite CS) {
|
||||
// If the call to the callee is a non-tail call, we must clear the 'tail'
|
||||
// flags on any calls that we inline.
|
||||
bool MustClearTailCallFlags =
|
||||
isa<CallInst>(TheCall) || !cast<CallInst>(TheCall)->isTailCall();
|
||||
isa<CallInst>(TheCall) && !cast<CallInst>(TheCall)->isTailCall();
|
||||
|
||||
BasicBlock *OrigBB = TheCall->getParent();
|
||||
Function *Caller = OrigBB->getParent();
|
||||
|
Loading…
x
Reference in New Issue
Block a user