diff options
Diffstat (limited to 'compiler/semparallel.nim')
-rw-r--r-- | compiler/semparallel.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/semparallel.nim b/compiler/semparallel.nim index a914832de..6572a7f49 100644 --- a/compiler/semparallel.nim +++ b/compiler/semparallel.nim @@ -37,7 +37,7 @@ is valid, but spawn f(a[i]) spawn f(a[i]) inc i -is not! However, +is not! However, spawn f(a[i]) if guard: inc i spawn f(a[i]) @@ -460,7 +460,7 @@ proc liftParallel*(owner: PSym; n: PNode): PNode = # - detect used slices # - detect used arguments #echo "PAR ", renderTree(n) - + var a = initAnalysisCtx() let body = n.lastSon analyse(a, body) |