comptime: fix tcc check

pull/2340/head
Alexander Medvednikov 2019-10-14 08:52:54 +03:00
parent 60e7c12e92
commit a68222b55b
1 changed files with 3 additions and 1 deletions

View File

@ -69,7 +69,9 @@ fn (p mut Parser) comp_time() {
p.genln('#ifdef __TINYC__')
p.check(.lcbr)
p.statements_no_rcbr()
p.genln('#endif')
if ! (p.tok == .dollar && p.peek() == .key_else) {
p.genln('#endif')
}
}
else {
println('Supported platforms:')