()
| 260 | |
| 261 | // ---- reg_parse ---- |
| 262 | |
| 263 | #[test] |
| 264 | fn int_reg_round_trips_all() { |
| 265 | for r in 0u8..=31 { |
| 266 | let name = reg_name(r, false); |
| 267 | assert_eq!( |
| 268 | parse_int_reg(&name), |
| 269 | Some(r), |
| 270 | "int reg {r} ({name}) did not round-trip" |
| 271 | ); |
nothing calls this directly
no test coverage detected