diff options
| author | Ryan Snyder <ryan@vector35.com> | 2024-05-24 16:09:43 -0400 |
|---|---|---|
| committer | Ryan Snyder <ryan@vector35.com> | 2024-05-24 17:14:46 -0400 |
| commit | 08a1e68f7dbf4671ec53538e874162998b249f0c (patch) | |
| tree | f393b38c532ef883b5fbf26f22f3e9def0147d0a /arch/riscv/src | |
| parent | 56115aecf186bc720dae9a20cc4c6aef248ba07f (diff) | |
arch: multiple delay slot support, suppress spurious mips warning
Diffstat (limited to 'arch/riscv/src')
| -rw-r--r-- | arch/riscv/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/riscv/src/lib.rs b/arch/riscv/src/lib.rs index 91a418f7..bc67e465 100644 --- a/arch/riscv/src/lib.rs +++ b/arch/riscv/src/lib.rs @@ -687,7 +687,7 @@ impl<D: 'static + RiscVDisassembler + Send + Sync> architecture::Architecture fo _ => return None, }; - let mut res = InstructionInfo::new(inst_len, false); + let mut res = InstructionInfo::new(inst_len, 0); match op { Op::Jal(ref j) => { |
