Searched defs:RHSI (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp143 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst; local
146 return LHSI == RHSI;
148 if (LHSI->getOpcode() != RHSI->getOpcode()) return false;
149 if (LHSI->isIdenticalTo(RHSI)) return true;
156 assert(isa<BinaryOperator>(RHSI)
158 BinaryOperator *RHSBinOp = cast<BinaryOperator>(RHSI);
174 assert(isa<CmpInst>(RHSI)
176 CmpInst *RHSCmp = cast<CmpInst>(RHSI);
245 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst; local
247 return LHSI == RHSI;
[all...]

Completed in 238 milliseconds