diff options
author | Evan Cheng <evan.cheng@apple.com> | 2010-01-31 07:27:31 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2010-01-31 07:27:31 +0000 |
commit | e626b0f6b187731ea3b3df2171f2d4e093f69f19 (patch) | |
tree | 44dedd9f559c14a8115cc3a86d0cad5347c19686 | |
parent | 843bd699f68f7dec5724756de10c4146cfde3df6 (diff) |
Fix a missing check from my last commit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94949 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86ISelLowering.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp index e27d93cf7c..e272d9b92a 100644 --- a/lib/Target/X86/X86ISelLowering.cpp +++ b/lib/Target/X86/X86ISelLowering.cpp @@ -2270,7 +2270,8 @@ X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee, return false; // If it's an indirect call, conversatively return false if the caller's // address is taken. - if (!isa<ExternalSymbolSDNode>(Callee) && CallerF->hasAddressTaken()) + if (!CalleeF && + !isa<ExternalSymbolSDNode>(Callee) && CallerF->hasAddressTaken()) return false; // Look for obvious safe cases to perform tail call optimization. |