(from: &str)
| 448 | #[test] |
| 449 | fn check_constant_data_endianness_as_uimm128() { |
| 450 | fn parse_to_uimm128(from: &str) -> Vec<u8> { |
| 451 | from.parse::<ConstantData>() |
| 452 | .unwrap() |
| 453 | .expand_to(16) |
| 454 | .into_vec() |
| 455 | } |
| 456 | |
| 457 | assert_eq!( |
| 458 | parse_to_uimm128("0x42"), |