Package: tcc Version: 0.9.24~cvs20070502-1 When I invoke tcc with "-b" flag (bounds check) it reports an error on the line "s2[0] = 0;" and it's obvious that it's not memory problem.
command line tcc -b -run program_bellow
----------
static char s1[20];
static char s2[20];
int main(void){
s1[0] = 0;
s2[0] = 0;
return 0;
}
---------

