diff --git a/llvm/lib/Analysis/TargetTransformInfo.cpp b/llvm/lib/Analysis/TargetTransformInfo.cpp --- a/llvm/lib/Analysis/TargetTransformInfo.cpp +++ b/llvm/lib/Analysis/TargetTransformInfo.cpp @@ -218,8 +218,7 @@ ExitBlock = BB; TripCount = SE.getAddExpr(EC, SE.getOne(EC->getType())); - if (!EC->getType()->isPointerTy() && - EC->getType() != CountType) + if (!EC->getType()->isPointerTy() && EC->getType() != CountType) TripCount = SE.getZeroExtendExpr(TripCount, CountType); break;