From 86b7d6b229d33d017f21f115c2df28c89b6a4c9b Mon Sep 17 00:00:00 2001 From: Luke Street Date: Sat, 24 Jan 2026 20:23:40 -0700 Subject: [PATCH] Remove extra relocs in PPC data_reloc_size --- objdiff-core/src/arch/ppc/mod.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/objdiff-core/src/arch/ppc/mod.rs b/objdiff-core/src/arch/ppc/mod.rs index 3d122f0..f02e3aa 100644 --- a/objdiff-core/src/arch/ppc/mod.rs +++ b/objdiff-core/src/arch/ppc/mod.rs @@ -344,9 +344,6 @@ impl Arch for ArchPpc { }, RelocationFlags::Coff(r_type) => match r_type { pe::IMAGE_REL_PPC_ADDR32 => 4, - pe::IMAGE_REL_PPC_REFHI => 2, - pe::IMAGE_REL_PPC_REFLO => 2, - pe::IMAGE_REL_PPC_REL24 => 3, _ => 1, }, }