Fix an 80-column violation.

llvm-svn: 70550
This commit is contained in:
Dan Gohman 2009-05-01 16:44:56 +00:00
parent 194e42c612
commit 90f73564d0
1 changed files with 2 additions and 1 deletions

View File

@ -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) &&