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 6728415 commit dd1f2b0Copy full SHA for dd1f2b0
plugins/dwarf/dwarf_import/src/dwarfdebuginfo.rs
@@ -722,7 +722,9 @@ impl DebugInfoBuilder {
722
// DWARF doesn't contain GOT info, so remove any entries there...they will be wrong (relying on Binja's mechanisms for the GOT is good )
723
// Also ignore externs since we don't want to try and create functions not backed by the file
724
let symbol_type = symbol.sym_type();
725
- if symbol_type != SymbolType::ImportAddress && symbol_type != SymbolType::External {
+ if symbol_type != SymbolType::ImportAddress
726
+ && symbol_type != SymbolType::External
727
+ {
728
func.address = Some(symbol.address() - bv.start());
729
}
730
0 commit comments