Fixed a problem with nested while() loops not handling break and continue correctly.

Fixes issue #96.


git-svn-id: http://picoc.googlecode.com/svn/trunk@509 21eae674-98b7-11dd-bd71-f92a316d2d60
This commit is contained in:
zik.saleeba 2011-02-11 06:27:54 +00:00
parent 318db09eb7
commit b4f882354d
4 changed files with 30 additions and 3 deletions

View file

@ -516,6 +516,7 @@ enum ParseResult ParseStatement(struct ParseState *Parser, int CheckTrailingSemi
case TokenWhile:
{
struct ParseState PreConditional;
enum RunMode PreMode = Parser->Mode;
if (LexGetToken(Parser, NULL, TRUE) != TokenOpenBracket)
ProgramFail(Parser, "'(' expected");
@ -532,12 +533,12 @@ enum ParseResult ParseStatement(struct ParseState *Parser, int CheckTrailingSemi
ProgramFail(Parser, "statement expected");
if (Parser->Mode == RunModeContinue)
Parser->Mode = RunModeRun;
Parser->Mode = PreMode;
} while (Parser->Mode == RunModeRun && Condition);
if (Parser->Mode == RunModeBreak)
Parser->Mode = RunModeRun;
Parser->Mode = PreMode;
CheckTrailingSemicolon = FALSE;
}

24
tests/48_nested_break.c Normal file
View file

@ -0,0 +1,24 @@
#include <stdio.h>
int a;
char b;
a = 0;
while (a < 2)
{
printf("%d", a++);
break;
b = 'A';
while (b < 'C')
{
printf("%c", b++);
}
printf("e");
}
printf("\n");
int main()
{
return 0;
}

View file

@ -0,0 +1 @@
0

View file

@ -42,7 +42,8 @@ TESTS= 00_assignment.test \
43_void_param.test \
44_scoped_declarations.test \
45_empty_for.test \
47_switch_return.test
47_switch_return.test \
48_nested_break.test
%.test: %.expect %.c
@echo Test: $*...