summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2012-03-28 07:34:36 +0000
committerEric Christopher <echristo@apple.com>2012-03-28 07:34:36 +0000
commit9fc5c83fb7b86862d4a29bf416842a4f1a0084d5 (patch)
treefc5969e7e31dbe2396080fe04ff440fe154b1199 /lib
parent663e0cf73dcf2bfbbfc22b49c739d54916652d1c (diff)
downloadllvm-9fc5c83fb7b86862d4a29bf416842a4f1a0084d5.tar.gz
llvm-9fc5c83fb7b86862d4a29bf416842a4f1a0084d5.tar.bz2
llvm-9fc5c83fb7b86862d4a29bf416842a4f1a0084d5.tar.xz
More debug output.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153571 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
index 4062ae97a4..49f0431e30 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
@@ -4697,7 +4697,8 @@ SelectionDAGBuilder::visitIntrinsicCall(const CallInst &I, unsigned Intrinsic) {
const AllocaInst *AI = dyn_cast<AllocaInst>(V);
// Don't handle byval struct arguments or VLAs, for example.
if (!AI) {
- DEBUG(dbgs() << "Dropping debug location info for:\n\t" << DI << "\n");
+ DEBUG(dbgs() << "Dropping debug location info for:\n " << DI << "\n");
+ DEBUG(dbgs() << " Last seen at:\n " << *V << "\n");
return 0;
}
DenseMap<const AllocaInst*, int>::iterator SI =