aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-07-23 15:17:01 +0000
committerChris Lattner <sabre@nondot.org>2003-07-23 15:17:01 +0000
commitbfcdf14d83bbe974f3a232e2247eae8b6a6923bc (patch)
tree89759962cc666e89916e0a1187dbd62758212b86 /lib/Analysis
parent28a128e37a42ab2a6677dffef2834e2c09be7e1a (diff)
downloadexternal_llvm-bfcdf14d83bbe974f3a232e2247eae8b6a6923bc.zip
external_llvm-bfcdf14d83bbe974f3a232e2247eae8b6a6923bc.tar.gz
external_llvm-bfcdf14d83bbe974f3a232e2247eae8b6a6923bc.tar.bz2
Fit code into 80 columns
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7249 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r--lib/Analysis/InductionVariable.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Analysis/InductionVariable.cpp b/lib/Analysis/InductionVariable.cpp
index 321c237..cdcc42f 100644
--- a/lib/Analysis/InductionVariable.cpp
+++ b/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<ConstantUInt>(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;
}