Fixed: #2473, #2530 Always-break loops containing breaks (forward gotos)

This commit is contained in:
Jindra Petřík
2026-01-25 12:49:05 +01:00
parent 8397d32772
commit 281b35f3bf
22 changed files with 686 additions and 332 deletions

View File

@@ -63,6 +63,11 @@ public abstract class BaseLocalData {
*/
public Reference<Integer> maxTempIndex = new Reference<>(0);
/**
* Wheter goto statements were used
*/
public Reference<Boolean> gotosUsed = new Reference<>(false);
/**
* Constructor.
*/