()
| 271 | ); |
| 272 | } |
| 273 | } |
| 274 | |
| 275 | #[test] |
| 276 | fn float_reg_round_trips_all() { |
| 277 | for r in 0u8..=31 { |
| 278 | let name = reg_name(r, true); |
| 279 | assert_eq!( |
| 280 | parse_float_reg(&name), |
| 281 | Some(r), |
| 282 | "float reg {r} ({name}) did not round-trip" |
| 283 | ); |
| 284 | } |
| 285 | } |
| 286 |
nothing calls this directly
no test coverage detected