Arithmetic shift right of negative value fills with 1s.
(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.""" |
| 563 | assert _try_prove(AShr(BitVecVal(0x80, 8), 2) == BitVecVal(0xE0, 8)) |
| 564 | |
| 565 | |
| 566 | class TestBVUniversal: |
nothing calls this directly
no test coverage detected