From 3bc9b251b9feac09de9c5016efb4a6b13aca113b Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 23 Jul 2003 15:17:01 +0000 Subject: [PATCH] Fit code into 80 columns llvm-svn: 7249 --- llvm/lib/Analysis/InductionVariable.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/llvm/lib/Analysis/InductionVariable.cpp b/llvm/lib/Analysis/InductionVariable.cpp index 321c237c872e..cdcc42f87124 100644 --- a/llvm/lib/Analysis/InductionVariable.cpp +++ b/llvm/lib/Analysis/InductionVariable.cpp @@ -254,14 +254,16 @@ Value* InductionVariable::getExecutionCount(LoopInfo *LoopInfo) { End = ConstantSInt::get(ubSigned->getType(), ubSigned->getValue()+1); DEBUG(std::cerr << "signed int constant\n"); } else if (ConstantUInt *ubUnsigned = dyn_cast(End)) { - End = ConstantUInt::get(ubUnsigned->getType(), ubUnsigned->getValue()+1); + End = ConstantUInt::get(ubUnsigned->getType(), + ubUnsigned->getValue()+1); DEBUG(std::cerr << "unsigned int constant\n"); } else { DEBUG(std::cerr << "symbolic bound\n"); //End = NULL; // new expression N+1 End = BinaryOperator::create(Instruction::Add, End, - ConstantUInt::get(ubUnsigned->getType(), 1)); + ConstantUInt::get(ubUnsigned->getType(), + 1)); } break; }