Skip to content

Commit f3d5f3e

Browse files
committed
Optimized getSoundlySolvedJumps()
If we have no unsound jumps and no maybe unsound jumps, we don't need to re-run the analysis because we are already sound
1 parent 01c71d4 commit f3d5f3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/it/unipr/EVMLiSA.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ public static Set<Statement> getSoundlySolvedJumps(JumpSolver checker, LiSA lisa
586586
if (JumpSolver.getLinkUnsoundJumpsToAllJumpdest()) {
587587

588588
// If we have no unsound jumps and no maybe unsound jumps, we don't
589-
// need to re-run the analysis because we are sound
589+
// need to re-run the analysis because we are already sound
590590
if (checker.getUnsoundJumps().isEmpty() && checker.getMaybeUnsoundJumps().isEmpty())
591591
return soundlySolved;
592592

0 commit comments

Comments
 (0)