Searched refs:RHSCmp (Results 1 – 2 of 2) sorted by relevance
180 CmpInst *RHSCmp = cast<CmpInst>(RHSI); in isEqual() local182 return LHSCmp->getOperand(0) == RHSCmp->getOperand(1) && in isEqual()183 LHSCmp->getOperand(1) == RHSCmp->getOperand(0) && in isEqual()184 LHSCmp->getSwappedPredicate() == RHSCmp->getPredicate(); in isEqual()
2047 llvm::Value *RHSCmp = Builder.CreateICmpNE(Ops.RHS, NegOne); in EmitUndefinedBehaviorIntegerDivAndRemCheck() local2048 llvm::Value *Overflow = Builder.CreateOr(LHSCmp, RHSCmp, "or"); in EmitUndefinedBehaviorIntegerDivAndRemCheck()