HomeSort by: relevance | last modified time | path
    Searched refs:ECV (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopPredication.cpp 1155 Value *ECV = Rewriter.expandCodeFor(ExitCount);
1159 if (ECV->getType() != RHS->getType()) {
1160 Type *WiderTy = SE->getWiderType(ECV->getType(), RHS->getType());
1161 ECV = B.CreateZExt(ECV, WiderTy);
1165 Value *NewCond = B.CreateICmp(ICmpInst::ICMP_UGT, ECV, RHS);
IndVarSimplify.cpp 1697 Value *ECV = Rewriter.expandCodeFor(ExitCount);
1701 if (ECV->getType() != RHS->getType()) {
1702 Type *WiderTy = SE->getWiderType(ECV->getType(), RHS->getType());
1703 ECV = B.CreateZExt(ECV, WiderTy);
1708 NewCond = B.CreateICmp(Pred, ECV, RHS);

Completed in 34 milliseconds