Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:LShr

60       if (I->getOpcode() == Instruction::LShr && !I->isExact()) {
953 BinaryOperator *LShr = BinaryOperator::CreateLShr(
956 LShr->setIsExact();
957 return LShr;
983 BinaryOperator *LShr = BinaryOperator::CreateLShr(Op0, N);
985 LShr->setIsExact();
986 return LShr;
1045 // (x lshr C1) udiv C2 --> x udiv (C2 << C1)