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 bd3ed0d commit d9dbf17Copy full SHA for d9dbf17
objdiff-core/src/arch/ppc/mod.rs
@@ -635,6 +635,7 @@ fn make_fake_pool_reloc(
635
target_symbol = symbols.iter().position(|s| {
636
s.section == Some(section_index)
637
&& s.size > 0
638
+ && !s.flags.contains(SymbolFlag::Hidden)
639
&& (s.address..s.address + s.size).contains(&target_address)
640
})?;
641
addend = target_address.checked_sub(symbols[target_symbol].address)? as i64;
0 commit comments