Diff of /test/stmt-do-while.test.expected [000000] .. [52cec0]  Maximize  Restore

Switch to unified view

a b/test/stmt-do-while.test.expected
1
FUNCTION func:BOOL;
2
IF x < 10
3
x := x / 2;
4
5
END_IF
6
WHILE x < 10 DO
7
x := x / 2;
8
9
END_WHILE