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

/external/llvm/unittests/IR/
H A DInstructionsTest.cpp162 ICmpInst *ICmp1 = new ICmpInst(ICmpInst::ICMP_ULT, PtrVecA, PtrVecB); local
163 EXPECT_NE(ICmp0, ICmp1); // suppress warning.
235 delete ICmp1;
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1250 ICmpInst *ICmp1 = dyn_cast<ICmpInst>(I1), *ICmp2 = dyn_cast<ICmpInst>(I2);
1252 if (ICmp1 && ICmp2 &&
1253 ICmp1->getOperand(0) != ICmp2->getOperand(0) &&
1254 ICmp1->getOperand(1) != ICmp2->getOperand(1) &&
1255 (ICmp1->getOperand(0) == ICmp2->getOperand(1) ||
1256 ICmp1->getOperand(1) == ICmp2->getOperand(0))) {

Completed in 96 milliseconds