We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f48e69 commit 127ae5aCopy full SHA for 127ae5a
objdiff-core/src/arch/ppc/mod.rs
@@ -633,6 +633,8 @@ fn make_fake_pool_reloc(
633
target_symbol = symbols.iter().position(|s| {
634
s.section == Some(section_index)
635
&& s.size > 0
636
+ && !s.flags.contains(SymbolFlag::Hidden)
637
+ && !s.flags.contains(SymbolFlag::Ignored)
638
&& (s.address..s.address + s.size).contains(&target_address)
639
})?;
640
addend = target_address.checked_sub(symbols[target_symbol].address)? as i64;
0 commit comments