We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c02eb31 commit 2a1fd0cCopy full SHA for 2a1fd0c
1 file changed
objdiff-core/src/arch/arm.rs
@@ -356,7 +356,10 @@ impl Arch for ArchArm {
356
}
357
358
// Thumb calls
359
- elf::R_ARM_THM_PC22 | elf::R_ARM_THM_XPC22 => {
+ elf::R_ARM_THM_PC8
360
+ | elf::R_ARM_THM_PC11
361
+ | elf::R_ARM_THM_PC22
362
+ | elf::R_ARM_THM_XPC22 => {
363
let data = section_data[address..address + 2].try_into()?;
364
let high = self.endianness.read_i16_bytes(data) as i32;
365
let data = section_data[address + 2..address + 4].try_into()?;
0 commit comments