Searched refs:ECV (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopPredication.cpp1161 Value *ECV = Rewriter.expandCodeFor(ExitCount); local
1165 if (ECV->getType() != RHS->getType()) {
1166 Type *WiderTy = SE->getWiderType(ECV->getType(), RHS->getType());
1167 ECV = B.CreateZExt(ECV, WiderTy);
1171 Value *NewCond = B.CreateICmp(ICmpInst::ICMP_UGT, ECV, RHS);
H A DIndVarSimplify.cpp2983 Value *ECV = Rewriter.expandCodeFor(ExitCount); local
2987 if (ECV->getType() != RHS->getType()) {
2988 Type *WiderTy = SE->getWiderType(ECV->getType(), RHS->getType());
2989 ECV = B.CreateZExt(ECV, WiderTy);
2994 NewCond = B.CreateICmp(Pred, ECV, RHS);

Completed in 80 milliseconds