when statements branches exit early (#17143)

When statement branches exit early outside of nimvm. In nimvm it seems that all
sides of the branches must be evaluated as the code gen happens at a later
stage, this remains intact.
This commit is contained in:
Saem Ghani
2021-02-22 03:27:23 -08:00
committed by GitHub
parent 05711d95e0
commit 2aba116bbc
3 changed files with 72 additions and 0 deletions

View File

@@ -2364,6 +2364,7 @@ proc semWhen(c: PContext, n: PNode, semCheck = true): PNode =
discard
elif e.intVal != 0 and result == nil:
setResult(it[1])
return # we're not in nimvm and we already have a result
of nkElse, nkElseExpr:
checkSonsLen(it, 1, c.config)
if result == nil or whenNimvm: