Match and consume an i128 immediate.
(&mut self, err_msg: &str)
| 803 | |
| 804 | // Match and consume an i128 immediate. |
| 805 | fn match_imm128(&mut self, err_msg: &str) -> ParseResult<i128> { |
| 806 | match_imm!(i128, u128, self, err_msg) |
| 807 | } |
| 808 | |
| 809 | // Match and consume an optional offset32 immediate. |
| 810 | // |