[InstCombine] Fix 80 column violation I accidentally introduced. NFC
authorCraig Topper <craig.topper@gmail.com>
Fri, 24 Mar 2017 02:57:59 +0000 (02:57 +0000)
committerCraig Topper <craig.topper@gmail.com>
Fri, 24 Mar 2017 02:57:59 +0000 (02:57 +0000)
llvm-svn: 298679

llvm/lib/Transforms/InstCombine/InstructionCombining.cpp

index 7586e48..2241863 100644 (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;