Searched refs:RHSCmp (Results 1 – 3 of 3) sorted by relevance
392 CmpInst *RHSCmp = cast<CmpInst>(RHSI); in isEqualImpl() local394 return LHSCmp->getOperand(0) == RHSCmp->getOperand(1) && in isEqualImpl()395 LHSCmp->getOperand(1) == RHSCmp->getOperand(0) && in isEqualImpl()396 LHSCmp->getSwappedPredicate() == RHSCmp->getPredicate(); in isEqualImpl()
8434 if (const ICmpInst *RHSCmp = dyn_cast<ICmpInst>(RHS)) in isImpliedCondition() local8435 return isImpliedCondition(LHS, RHSCmp->getPredicate(), in isImpliedCondition()8436 RHSCmp->getOperand(0), RHSCmp->getOperand(1), DL, in isImpliedCondition()
3429 llvm::Value *RHSCmp = Builder.CreateICmpNE(Ops.RHS, NegOne); in EmitUndefinedBehaviorIntegerDivAndRemCheck() local3430 llvm::Value *NotOverflow = Builder.CreateOr(LHSCmp, RHSCmp, "or"); in EmitUndefinedBehaviorIntegerDivAndRemCheck()