Searched refs:LHSCmp (Results 1 – 2 of 2) sorted by relevance
179 if (CmpInst *LHSCmp = dyn_cast<CmpInst>(LHSI)) { in isEqual() local184 return LHSCmp->getOperand(0) == RHSCmp->getOperand(1) && in isEqual()185 LHSCmp->getOperand(1) == RHSCmp->getOperand(0) && in isEqual()186 LHSCmp->getSwappedPredicate() == RHSCmp->getPredicate(); in isEqual()
2251 llvm::Value *LHSCmp = Builder.CreateICmpNE(Ops.LHS, IntMin); in EmitUndefinedBehaviorIntegerDivAndRemCheck() local2253 llvm::Value *NotOverflow = Builder.CreateOr(LHSCmp, RHSCmp, "or"); in EmitUndefinedBehaviorIntegerDivAndRemCheck()