Initial work on data diffing

This commit is contained in:
2022-11-06 00:49:46 -04:00
parent ff9b378445
commit d9efa97c30
7 changed files with 489 additions and 16 deletions

View File

@@ -91,6 +91,8 @@ fn filter_sections(obj_file: &File<'_>) -> Result<Vec<ObjSection>> {
index: section.index().0,
symbols: Vec::new(),
relocations: Vec::new(),
data_diff: vec![],
match_percent: 0.0,
});
}
result.sort_by(|a, b| a.name.cmp(&b.name));