From 08a1e68f7dbf4671ec53538e874162998b249f0c Mon Sep 17 00:00:00 2001 From: Ryan Snyder Date: Fri, 24 May 2024 16:09:43 -0400 Subject: arch: multiple delay slot support, suppress spurious mips warning --- arch/riscv/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arch/riscv/src') 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 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) => { -- cgit v1.3.1