| 1077 | } |
| 1078 | |
| 1079 | APInt APInt::rotr(const APInt &rotateAmt) const { |
| 1080 | return rotr(rotateModulo(BitWidth, rotateAmt)); |
| 1081 | } |
| 1082 | |
| 1083 | APInt APInt::rotr(unsigned rotateAmt) const { |
| 1084 | rotateAmt %= BitWidth; |
nothing calls this directly
no test coverage detected