(self)
| 1182 | assert r._ast.op == BinOp.ROTR |
| 1183 | |
| 1184 | def test_sdiv_ast(self): |
| 1185 | x = BitVec("x", 8) |
| 1186 | r = SDiv(x, 2) |
| 1187 | assert isinstance(r._ast, BinOpNode) |
| 1188 | assert r._ast.op == BinOp.SDIV |
| 1189 | |
| 1190 | def test_srem_ast(self): |
| 1191 | x = BitVec("x", 8) |