Match and consume a signed 16-bit immediate.
(&mut self, err_msg: &str)
| 792 | |
| 793 | // Match and consume a signed 16-bit immediate. |
| 794 | fn match_imm16(&mut self, err_msg: &str) -> ParseResult<i16> { |
| 795 | match_imm!(i16, u16, self, err_msg) |
| 796 | } |
| 797 | |
| 798 | // Match and consume an i32 immediate. |
| 799 | // This is used for stack argument byte offsets. |
no outgoing calls
no test coverage detected