Match and consume an i32 immediate. This is used for stack argument byte offsets.
(&mut self, err_msg: &str)
| 798 | // Match and consume an i32 immediate. |
| 799 | // This is used for stack argument byte offsets. |
| 800 | fn match_imm32(&mut self, err_msg: &str) -> ParseResult<i32> { |
| 801 | match_imm!(i32, u32, self, err_msg) |
| 802 | } |
| 803 | |
| 804 | // Match and consume an i128 immediate. |
| 805 | fn match_imm128(&mut self, err_msg: &str) -> ParseResult<i128> { |
no outgoing calls
no test coverage detected