diff options
author | Dan Gohman <gohman@apple.com> | 2009-05-01 16:44:56 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-05-01 16:44:56 +0000 |
commit | 99243b38300a4cccb3ba23698be5faa5e12ee965 (patch) | |
tree | d0f7bbb96d03a14367dacd139c8ed7c5e82206d0 /lib/Analysis/ScalarEvolution.cpp | |
parent | 10b9479f555b27521062d1303ed43e11b69f7873 (diff) |
Fix an 80-column violation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70550 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ScalarEvolution.cpp')
-rw-r--r-- | lib/Analysis/ScalarEvolution.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp index ae3eb48bf5..ba1cbb156d 100644 --- a/lib/Analysis/ScalarEvolution.cpp +++ b/lib/Analysis/ScalarEvolution.cpp @@ -646,7 +646,8 @@ SCEVHandle SCEVAddRecExpr::evaluateAtIteration(SCEVHandle It, // SCEV Expression folder implementations //===----------------------------------------------------------------------===// -SCEVHandle ScalarEvolution::getTruncateExpr(const SCEVHandle &Op, const Type *Ty) { +SCEVHandle ScalarEvolution::getTruncateExpr(const SCEVHandle &Op, + const Type *Ty) { assert(getTypeSizeInBits(Op->getType()) > getTypeSizeInBits(Ty) && "This is not a truncating conversion!"); assert(isSCEVable(Ty) && |