mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
Unify formatting of debug output.
llvm-svn: 182495
This commit is contained in:
parent
206b977507
commit
2c2b6260de
@ -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