1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

parser: fix v selfcompilation with tcc (tcc bug workaround)

This commit is contained in:
Delyan Angelov 2020-04-14 11:06:19 +03:00
parent 956651384c
commit 2df4998acc

View File

@ -1348,7 +1348,11 @@ fn (p mut Parser) array_init() ast.ArrayInit {
}
line_nr := p.tok.line_nr
// NB: do not remove the next line without testing
// v selfcompilation with tcc first
tcc_stack_bug := 12345
last_pos = p.tok.position()
p.check(.rsbr)
// [100]byte
if exprs.len == 1 && p.tok.kind in [.name, .amp] && p.tok.line_nr == line_nr {