Build a store `AsmToken` for the given mnemonic.
(mnemonic: &str, rs1: u8, rs2: u8, imm: i32)
| 320 | }) = parse_branch(kind, rest) |
| 321 | { |
| 322 | out.push(AsmToken::Branch { |
| 323 | kind, |
| 324 | rs1: rs2, |
| 325 | rs2: rs1, |
| 326 | target, |
| 327 | }); |
| 328 | } else { |
| 329 | asm_warn!(out, "unrecognised {mnemonic}: {line}"); |
| 330 | } |
| 331 | } |
| 332 | |
| 333 | // --- Compare-with-zero branch pseudos --- |
no outgoing calls
no test coverage detected