1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-17 21:32:04 +00:00

Remove debug prints from r238487

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238501 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Kleckner 2015-05-28 21:23:53 +00:00
parent 20e00576af
commit cb95e9ef45

@ -2789,13 +2789,8 @@ X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
// GuaranteedTailCallOpt will override this.
GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
if (!G || (!G->getGlobal()->hasLocalLinkage() &&
G->getGlobal()->hasDefaultVisibility())) {
G->getGlobal()->hasDefaultVisibility()))
isTailCall = false;
if (G) {
llvm::errs() << "disabling tail call for default visibility symbol\n";
G->getGlobal()->dump();
}
}
}
bool IsMustTail = CLI.CS && CLI.CS->isMustTailCall();