From df73e7c5b7c2f64f3d5b4c2677be8272bcdad024 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 --- llvm/lib/Transforms/InstCombine/InstructionCombining.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp b/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp index 7586e48..2241863 100644 --- a/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp +++ b/llvm/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; -- 2.7.4