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

/external/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp158 BinaryOperator *RHSBinOp = cast<BinaryOperator>(RHSI); local
162 assert(isa<OverflowingBinaryOperator>(RHSBinOp)
164 if (LHSBinOp->hasNoUnsignedWrap() != RHSBinOp->hasNoUnsignedWrap() ||
165 LHSBinOp->hasNoSignedWrap() != RHSBinOp->hasNoSignedWrap())
170 return LHSBinOp->getOperand(0) == RHSBinOp->getOperand(1) &&
171 LHSBinOp->getOperand(1) == RHSBinOp->getOperand(0);
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp2446 } else if (llvm::BinaryOperator* RHSBinOp =
2448 if (RHSBinOp->getOpcode() == llvm::Instruction::FMul) {
2449 assert(RHSBinOp->getNumUses() == 0 &&
2451 return buildFMulAdd(RHSBinOp, op.LHS, CGF, Builder, isSub, false);

Completed in 162 milliseconds