(address: usize)
| 13 | } |
| 14 | |
| 15 | fn align(address: usize) -> impl Fn(&[u8]) -> IResult<&[u8], &[u8]> { |
| 16 | move |input: &[u8]| take((4 - address % 4) % 4)(input) |
| 17 | } |
| 18 | |
| 19 | fn lookupswitch_parser(input: &[u8]) -> IResult<&[u8], Instruction> { |
| 20 | // This function provides type annotations required by rustc. |
no outgoing calls
no test coverage detected