mirror of
https://github.com/mirror/tinycc.git
synced 2025-01-27 06:10:06 +08:00
tests/tests2/79_vla_continue.c: Fix off-by-one error.
This commit is contained in:
parent
c39bc9caa7
commit
3712c958f4
@ -69,10 +69,10 @@ void test4()
|
||||
do {
|
||||
int a[f()];
|
||||
|
||||
addr[count] = a;
|
||||
addr[--count] = a;
|
||||
|
||||
continue;
|
||||
} while(count--);
|
||||
} while (count);
|
||||
|
||||
if(addr[9] == addr[0]) {
|
||||
printf("OK\n");
|
||||
|
Loading…
Reference in New Issue
Block a user