Run some post-processing on the disassembly to make it match Capstone.
(dis: &str)
| 264 | |
| 265 | /// Run some post-processing on the disassembly to make it match Capstone. |
| 266 | fn fix_up(dis: &str) -> alloc::borrow::Cow<'_, str> { |
| 267 | let dis = remove_after_semicolon(dis); |
| 268 | replace_signed_immediates(&dis) |
| 269 | } |
| 270 | |
| 271 | /// Fuzz-specific registers. |
| 272 | /// |
no test coverage detected