We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e1fef8 commit 66a0074Copy full SHA for 66a0074
1 file changed
objdiff-core/src/arch/x86.rs
@@ -300,13 +300,14 @@ impl Arch for ArchX86 {
300
},
301
Architecture::X86_64 => match relocation.flags() {
302
object::RelocationFlags::Coff {
303
- typ: pe::IMAGE_REL_AMD64_ADDR32NB
304
- | pe::IMAGE_REL_AMD64_REL32
305
- | pe::IMAGE_REL_AMD64_REL32_1
306
- | pe::IMAGE_REL_AMD64_REL32_2
307
- | pe::IMAGE_REL_AMD64_REL32_3
308
- | pe::IMAGE_REL_AMD64_REL32_4
309
- | pe::IMAGE_REL_AMD64_REL32_5,
+ typ:
+ pe::IMAGE_REL_AMD64_ADDR32NB
+ | pe::IMAGE_REL_AMD64_REL32
+ | pe::IMAGE_REL_AMD64_REL32_1
+ | pe::IMAGE_REL_AMD64_REL32_2
+ | pe::IMAGE_REL_AMD64_REL32_3
+ | pe::IMAGE_REL_AMD64_REL32_4
310
+ | pe::IMAGE_REL_AMD64_REL32_5,
311
}
312
| object::RelocationFlags::Elf { r_type: elf::R_X86_64_32 | elf::R_X86_64_PC32 } => {
313
let data =
0 commit comments