(self, kernel)
| 556 | assert _try_prove(LShR(BitVecVal(128, 8), 4) == BitVecVal(8, 8)) |
| 557 | |
| 558 | def test_ashr_positive(self, kernel): |
| 559 | assert _try_prove(AShr(BitVecVal(64, 8), 2) == BitVecVal(16, 8)) |
| 560 | |
| 561 | def test_ashr_negative(self, kernel): |
| 562 | """Arithmetic shift right of negative value fills with 1s.""" |
nothing calls this directly
no test coverage detected