Skip to content

Commit

Permalink
Missing not
Browse files Browse the repository at this point in the history
  • Loading branch information
VincenzoArceri committed Jun 12, 2024
1 parent d562d6c commit fa4e8a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/it/unipr/checker/JumpSolver.java
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public void afterExecution(

for (Statement node : this.cfgToAnalyze.getAllJumps()) {
if (cfgToAnalyze.getAllPushedJumps().contains(node)
|| this.cfgToAnalyze.reachableFrom(entryPoint, node))
|| !this.cfgToAnalyze.reachableFrom(entryPoint, node))
continue;

for (AnalyzedCFG<SimpleAbstractState<MonolithicHeap, EVMAbstractState, TypeEnvironment<InferredTypes>>,
Expand Down

0 comments on commit fa4e8a2

Please sign in to comment.