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 e7e1ec0 commit b3c092fCopy full SHA for b3c092f
objdiff-core/src/arch/mips.rs
@@ -125,6 +125,8 @@ impl ArchMips {
125
let Ok(name) = obj_symbol.name() else { continue };
126
if let Some(prefix) = name.strip_suffix(".NON_MATCHING") {
127
ignored_symbols.insert(obj_symbol.index().0);
128
+ // Only remove the prefixless symbols if we are on the Base side of the diff,
129
+ // to allow diffing against target objects that contain `.NON_MATCHING` markers.
130
if diff_side == DiffSide::Base
131
&& let Some(target_symbol) = object.symbol_by_name(prefix)
132
{
0 commit comments