Searched refs:ShlAmount (Results 1 – 1 of 1) sorted by relevance
3106 static SDValue getLeftShift(SelectionDAG *CurDAG, SDValue Op, int ShlAmount) { in getLeftShift() argument3107 if (ShlAmount == 0) in getLeftShift()3116 if (ShlAmount > 0) { in getLeftShift()3120 CurDAG->getTargetConstant(BitWidth - ShlAmount, dl, VT), in getLeftShift()3121 CurDAG->getTargetConstant(BitWidth - 1 - ShlAmount, dl, VT)); in getLeftShift()3124 assert(ShlAmount < 0 && "expected right shift"); in getLeftShift()3125 int ShrAmount = -ShlAmount; in getLeftShift()