Home | History | Annotate | Download | only in Scalar

Lines Matching refs:BinOp

95   if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(Inst)) {
96 Value *LHS = BinOp->getOperand(0);
97 Value *RHS = BinOp->getOperand(1);
98 if (BinOp->isCommutative() && BinOp->getOperand(0) > BinOp->getOperand(1))
101 return hash_combine(BinOp->getOpcode(), LHS, RHS);