[llvm] r298679 - [InstCombine] Fix 80 column violation I accidentally introduced. NFC
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 23 19:57:59 PDT 2017
Author: ctopper
Date: Thu Mar 23 21:57:59 2017
New Revision: 298679
URL: http://llvm.org/viewvc/llvm-project?rev=298679&view=rev
Log:
[InstCombine] Fix 80 column violation I accidentally introduced. NFC
Modified:
llvm/trunk/lib/Transforms/InstCombine/InstructionCombining.cpp
Modified: llvm/trunk/lib/Transforms/InstCombine/InstructionCombining.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/InstCombine/InstructionCombining.cpp?rev=298679&r1=298678&r2=298679&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/InstCombine/InstructionCombining.cpp (original)
+++ llvm/trunk/lib/Transforms/InstCombine/InstructionCombining.cpp Thu Mar 23 21:57:59 2017
@@ -3032,7 +3032,8 @@ static bool AddReachableCodeToWorklist(B
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;
More information about the llvm-commits
mailing list