From a73d1213584c27618ef9826e3d16a5aea01c510e Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Fri, 24 Mar 2017 02:57:59 +0000 Subject: [PATCH] [InstCombine] Fix 80 column violation I accidentally introduced. NFC llvm-svn: 298679 --- lib/Transforms/InstCombine/InstructionCombining.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Transforms/InstCombine/InstructionCombining.cpp b/lib/Transforms/InstCombine/InstructionCombining.cpp index 7586e481028..2241863de48 100644 --- a/lib/Transforms/InstCombine/InstructionCombining.cpp +++ b/lib/Transforms/InstCombine/InstructionCombining.cpp @@ -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;