diff options
author | Eric Christopher <echristo@apple.com> | 2012-03-28 07:34:36 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2012-03-28 07:34:36 +0000 |
commit | 24a629851202172fcdc7a28af52eb9a241887285 (patch) | |
tree | 5877830f021d3ef625196052fe2024f3f264a777 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | |
parent | 7285c7d51d9e98829101ac057bef6189c2b94547 (diff) | |
download | bcm5719-llvm-24a629851202172fcdc7a28af52eb9a241887285.tar.gz bcm5719-llvm-24a629851202172fcdc7a28af52eb9a241887285.zip |
More debug output.
llvm-svn: 153571
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp index 4062ae97a49..49f0431e301 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp +++ b/llvm/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 = |