mirror of
https://github.com/frida/tinycc
synced 2024-12-25 06:26:49 +03: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