mirror of
https://github.com/mirror/tinycc.git
synced 2025-01-27 06:10:06 +08:00
move a comment to its correct location
This commit is contained in:
parent
b714af0405
commit
174d61a56e
2
tccgen.c
2
tccgen.c
@ -4378,7 +4378,6 @@ static void block(int *bsym, int *csym, int *case_sym, int *def_sym,
|
|||||||
label_pop(&local_label_stack, llabel);
|
label_pop(&local_label_stack, llabel);
|
||||||
/* pop left-over VLA size expressions */
|
/* pop left-over VLA size expressions */
|
||||||
vtop = pvtop;
|
vtop = pvtop;
|
||||||
/* pop locally defined symbols */
|
|
||||||
if(is_expr) {
|
if(is_expr) {
|
||||||
/* XXX: this solution makes only valgrind happy...
|
/* XXX: this solution makes only valgrind happy...
|
||||||
triggered by gcc.c-torture/execute/20000917-1.c */
|
triggered by gcc.c-torture/execute/20000917-1.c */
|
||||||
@ -4393,6 +4392,7 @@ static void block(int *bsym, int *csym, int *case_sym, int *def_sym,
|
|||||||
error("unsupported expression type");
|
error("unsupported expression type");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/* pop locally defined symbols */
|
||||||
sym_pop(&local_stack, s);
|
sym_pop(&local_stack, s);
|
||||||
next();
|
next();
|
||||||
} else if (tok == TOK_RETURN) {
|
} else if (tok == TOK_RETURN) {
|
||||||
|
Loading…
Reference in New Issue
Block a user