mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Add another debug statement.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152843 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b82062f652
commit
8f2a88d734
@ -4561,8 +4561,10 @@ SelectionDAGBuilder::visitIntrinsicCall(const CallInst &I, unsigned Intrinsic) {
|
||||
const DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
|
||||
MDNode *Variable = DI.getVariable();
|
||||
const Value *Address = DI.getAddress();
|
||||
if (!Address || !DIVariable(Variable).Verify())
|
||||
if (!Address || !DIVariable(Variable).Verify()) {
|
||||
DEBUG(dbgs() << "Dropping debug info for " << DI << "\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Build an entry in DbgOrdering. Debug info input nodes get an SDNodeOrder
|
||||
// but do not always have a corresponding SDNode built. The SDNodeOrder
|
||||
|
Loading…
Reference in New Issue
Block a user