Skip to content
Snippets Groups Projects
Commit 7acaf15c authored by Martin Stjernholm's avatar Martin Stjernholm
Browse files

Added stack depth tracking to handle jumping out of blocks nested inside

expressions. This is not only a fix due to the labeled breaks, e.g. the
following program have always bugged until now:

int main()
{
  foreach (({1,2,3}), int j)
    do
      if (17 + j + gauge {break;}) return 0;
    while (0);
}

Rev: src/docode.c:1.97
parent 7babb5ab
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment