Logical right-shift this APInt by shiftAmt. Logical right-shift function.
| 1030 | /// Logical right-shift this APInt by shiftAmt. |
| 1031 | /// Logical right-shift function. |
| 1032 | void APInt::lshrInPlace(const APInt &shiftAmt) { |
| 1033 | lshrInPlace((unsigned)shiftAmt.getLimitedValue(BitWidth)); |
| 1034 | } |
| 1035 | |
| 1036 | /// Logical right-shift this APInt by shiftAmt. |
| 1037 | /// Logical right-shift function. |
no test coverage detected