From 5d7877b807e45c6b58e6beb73ea11d7fe7f4467f Mon Sep 17 00:00:00 2001 From: Brandon Miller Date: Thu, 11 Dec 2025 12:33:40 -0500 Subject: [MIPS] Don't add a default branch type for jalr --- arch/mips/arch_mips.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/mips/arch_mips.cpp b/arch/mips/arch_mips.cpp index 51a5d411..0853f9fb 100644 --- a/arch/mips/arch_mips.cpp +++ b/arch/mips/arch_mips.cpp @@ -337,7 +337,7 @@ protected: if (instr.operands[0].reg == REG_ZERO && instr.operands[1].reg == REG_RA) result.AddBranch(FunctionReturn, 0, nullptr, hasBranchDelay); else - result.AddBranch(UnresolvedBranch, 0, nullptr, hasBranchDelay); + result.delaySlots = 1; break; case MIPS_BGEZAL: -- cgit v1.3.1