diff options
author | Dan Gohman <gohman@apple.com> | 2009-07-13 22:05:32 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-07-13 22:05:32 +0000 |
commit | fc7699405cc5b9ed769dde968bfdec915091846e (patch) | |
tree | 17e417784a6b358ec9d15b1d5d7449a49a00947e /llvm/lib/Analysis | |
parent | e6b4babcbb10f571a0c50291b6551457c8085d2d (diff) | |
download | bcm5719-llvm-fc7699405cc5b9ed769dde968bfdec915091846e.tar.gz bcm5719-llvm-fc7699405cc5b9ed769dde968bfdec915091846e.zip |
Whitespace cleanups.
llvm-svn: 75525
Diffstat (limited to 'llvm/lib/Analysis')
-rw-r--r-- | llvm/lib/Analysis/ScalarEvolution.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp index 28012e020f4..51437bcd0d3 100644 --- a/llvm/lib/Analysis/ScalarEvolution.cpp +++ b/llvm/lib/Analysis/ScalarEvolution.cpp @@ -704,7 +704,7 @@ const SCEV *SCEVAddRecExpr::evaluateAtIteration(const SCEV *It, //===----------------------------------------------------------------------===// const SCEV *ScalarEvolution::getTruncateExpr(const SCEV *Op, - const Type *Ty) { + const Type *Ty) { assert(getTypeSizeInBits(Op->getType()) > getTypeSizeInBits(Ty) && "This is not a truncating conversion!"); assert(isSCEVable(Ty) && @@ -753,7 +753,7 @@ const SCEV *ScalarEvolution::getTruncateExpr(const SCEV *Op, } const SCEV *ScalarEvolution::getZeroExtendExpr(const SCEV *Op, - const Type *Ty) { + const Type *Ty) { assert(getTypeSizeInBits(Op->getType()) < getTypeSizeInBits(Ty) && "This is not an extending conversion!"); assert(isSCEVable(Ty) && @@ -885,7 +885,7 @@ const SCEV *ScalarEvolution::getZeroExtendExpr(const SCEV *Op, } const SCEV *ScalarEvolution::getSignExtendExpr(const SCEV *Op, - const Type *Ty) { + const Type *Ty) { assert(getTypeSizeInBits(Op->getType()) < getTypeSizeInBits(Ty) && "This is not an extending conversion!"); assert(isSCEVable(Ty) && @@ -4581,8 +4581,8 @@ ScalarEvolution::isNecessaryCondOperands(ICmpInst::Predicate Pred, /// rounding up, to get the number of times the backedge is executed. Return /// CouldNotCompute if an intermediate computation overflows. const SCEV *ScalarEvolution::getBECount(const SCEV *Start, - const SCEV *End, - const SCEV *Step) { + const SCEV *End, + const SCEV *Step) { const Type *Ty = Start->getType(); const SCEV *NegOne = getIntegerSCEV(-1, Ty); const SCEV *Diff = getMinusSCEV(End, Start); |