From 14edb7eb1a099be998f1c752e7213b6880b8901b Mon Sep 17 00:00:00 2001 From: Chad Rosier Date: Mon, 21 Aug 2017 19:56:46 +0000 Subject: [PATCH] [InlineCost] Add more debug during inline cost computation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@311370 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/InlineCost.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Analysis/InlineCost.cpp b/lib/Analysis/InlineCost.cpp index 6f5770b1cb2..1567a6863b2 100644 --- a/lib/Analysis/InlineCost.cpp +++ b/lib/Analysis/InlineCost.cpp @@ -1700,7 +1700,7 @@ InlineCost llvm::getInlineCost( return llvm::InlineCost::getNever(); DEBUG(llvm::dbgs() << " Analyzing call of " << Callee->getName() - << "...\n"); + << "... (caller:" << Caller->getName() << ")\n"); CallAnalyzer CA(CalleeTTI, GetAssumptionCache, GetBFI, PSI, *Callee, CS, Params); -- 2.50.1