diff options
Diffstat (limited to 'llvm/lib/Analysis')
| -rw-r--r-- | llvm/lib/Analysis/ScalarEvolution.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp index ae3eb48bf52..ba1cbb156d1 100644 --- a/llvm/lib/Analysis/ScalarEvolution.cpp +++ b/llvm/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) && | 

