1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00

[InstCombine] Fix 80 column violation I accidentally introduced. NFC

llvm-svn: 298679
This commit is contained in:
Craig Topper 2017-03-24 02:57:59 +00:00
parent e8355ccb89
commit a73d121358

View File

@ -3032,7 +3032,8 @@ static bool AddReachableCodeToWorklist(BasicBlock *BB, const DataLayout &DL,
FoldRes = C;
if (FoldRes != C) {
DEBUG(dbgs() << "IC: ConstFold operand of: " << *Inst << "\n Old = " << *C
DEBUG(dbgs() << "IC: ConstFold operand of: " << *Inst
<< "\n Old = " << *C
<< "\n New = " << *FoldRes << '\n');
*i = FoldRes;
MadeIRChange = true;