mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Unify formatting of debug output.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182495 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
039c56fb57
commit
5da4e4f3b1
@ -648,7 +648,7 @@ bool FastISel::SelectCall(const User *I) {
|
||||
else
|
||||
// We can't yet handle anything else here because it would require
|
||||
// generating code, thus altering codegen because of debug info.
|
||||
DEBUG(dbgs() << "Dropping debug info for " << DI);
|
||||
DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n");
|
||||
return true;
|
||||
}
|
||||
case Intrinsic::dbg_value: {
|
||||
@ -682,7 +682,7 @@ bool FastISel::SelectCall(const User *I) {
|
||||
} else {
|
||||
// We can't yet handle anything else here because it would require
|
||||
// generating code, thus altering codegen because of debug info.
|
||||
DEBUG(dbgs() << "Dropping debug info for " << DI);
|
||||
DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n");
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
@ -1002,7 +1002,7 @@ void SelectionDAGBuilder::resolveDanglingDebugInfo(const Value *V,
|
||||
DAG.AddDbgValue(SDV, Val.getNode(), false);
|
||||
}
|
||||
} else
|
||||
DEBUG(dbgs() << "Dropping debug info for " << DI << "\n");
|
||||
DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n");
|
||||
DanglingDebugInfoMap[V] = DanglingDebugInfo();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user