Searched refs:ShlAmount (Results 1 – 1 of 1) sorted by relevance
2668 static SDValue getLeftShift(SelectionDAG *CurDAG, SDValue Op, int ShlAmount) { in getLeftShift() argument2669 if (ShlAmount == 0) in getLeftShift()2678 if (ShlAmount > 0) { in getLeftShift()2682 CurDAG->getTargetConstant(BitWidth - ShlAmount, dl, VT), in getLeftShift()2683 CurDAG->getTargetConstant(BitWidth - 1 - ShlAmount, dl, VT)); in getLeftShift()2686 assert(ShlAmount < 0 && "expected right shift"); in getLeftShift()2687 int ShrAmount = -ShlAmount; in getLeftShift()