(self)
| 2156 | """BV signed operations and rotations.""" |
| 2157 | |
| 2158 | def test_rotate_left(self): |
| 2159 | x = BitVec("x", 8) |
| 2160 | r = RotateLeft(x, 3) |
| 2161 | assert r.size() == 8 |
| 2162 | assert r._ast.op == BinOp.ROTL |
| 2163 | |
| 2164 | def test_rotate_right(self): |
| 2165 | x = BitVec("x", 8) |
nothing calls this directly
no test coverage detected