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 9eb196dCopy full SHA for 9eb196d
objdiff-core/src/obj/read.rs
@@ -433,8 +433,8 @@ fn map_relocations(
433
}
434
435
fn perform_data_flow_analysis(obj: &mut Object, config: &DiffObjConfig) -> Result<()> {
436
- // If neither of these settings are on, no flow analysis to perform
437
- if !config.analyze_data_flow && !config.ppc_calculate_pool_relocations {
+ // If either of these settings are off, no flow analysis to perform
+ if !config.analyze_data_flow || !config.ppc_calculate_pool_relocations {
438
return Ok(());
439
440
0 commit comments