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 a4fdb61 commit 0cfb559Copy full SHA for 0cfb559
objdiff-gui/src/views/data_diff.rs
@@ -51,6 +51,7 @@ fn data_row_hover_ui(
51
// TODO: Most of this code is copy-pasted from ins_hover_ui.
52
// Try to separate this out into a shared function.
53
ui.label(format!("Relocation type: {}", obj.arch.display_reloc(reloc.flags)));
54
+ ui.label(format!("Relocation address: {:x}", reloc.address));
55
let addend_str = match reloc.addend.cmp(&0i64) {
56
Ordering::Greater => format!("+{:x}", reloc.addend),
57
Ordering::Less => format!("-{:x}", -reloc.addend),
0 commit comments