From 25e2fdff0f8ce5c57548d09bbd56c84b73b5b0a0 Mon Sep 17 00:00:00 2001 From: Brandon Miller Date: Mon, 24 Mar 2025 11:21:12 -0400 Subject: Fix extern ptr corercion for R_MIPS_HIGHEST/HIGHER --- arch/mips/arch_mips.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/mips/arch_mips.cpp b/arch/mips/arch_mips.cpp index ddb78e42..85fbeb36 100644 --- a/arch/mips/arch_mips.cpp +++ b/arch/mips/arch_mips.cpp @@ -3193,6 +3193,8 @@ public: case R_MIPS_LO16: case R_MIPS_CALL16: case R_MIPS_GOT16: + case R_MIPS_HIGHER: + case R_MIPS_HIGHEST: result = BN_NOCOERCE_EXTERN_PTR; break; default: -- cgit v1.3.1