HomeSort by: relevance | last modified time | path
    Searched refs:RHSBinOp (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 346 BinaryOperator *RHSBinOp = cast<BinaryOperator>(RHSI);
349 return LHSBinOp->getOperand(0) == RHSBinOp->getOperand(1) &&
350 LHSBinOp->getOperand(1) == RHSBinOp->getOperand(0);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprScalar.cpp 3544 if (auto *RHSBinOp = dyn_cast<llvm::BinaryOperator>(op.RHS)) {
3545 if (RHSBinOp->getOpcode() == llvm::Instruction::FMul &&
3546 RHSBinOp->use_empty())
3547 return buildFMulAdd(RHSBinOp, op.LHS, CGF, Builder, isSub, false);
3556 if (auto *RHSBinOp = dyn_cast<llvm::CallBase>(op.RHS)) {
3557 if (RHSBinOp->getIntrinsicID() ==
3559 RHSBinOp->use_empty())
3560 return buildFMulAdd(RHSBinOp, op.LHS, CGF, Builder, isSub, false);

Completed in 21 milliseconds