Searched defs:isLshr (Results 1 - 1 of 1) sorted by last modified time

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp869 bool isLshr = (Shr->getOpcode() == Instruction::LShr); local
870 BitMask1 = isLshr ? (BitMask1.lshr(ShrAmt) << ShlAmt) :
876 BitMask2 = isLshr ? BitMask2.lshr(ShrAmt - ShlAmt):
897 New = isLshr ? BinaryOperator::CreateLShr(VarX, Amt) :

Completed in 219 milliseconds