summary refs log tree commit diff stats
path: root/compiler/ccgexprs.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2015-12-26 00:42:30 +0100
committerAndreas Rumpf <rumpf_a@web.de>2015-12-26 00:42:30 +0100
commitc1627354d1fe5499c3d8b6886ce63de6e062a463 (patch)
treeabda7e9d5089d52b395fac747d26318f5fd8c04a /compiler/ccgexprs.nim
parent86bb9d8b4768b638ccbc603c26a4b5a70343ab3e (diff)
downloadNim-c1627354d1fe5499c3d8b6886ce63de6e062a463.tar.gz
first implementation of the new lambda-lifting pass; barely anything works
Diffstat (limited to 'compiler/ccgexprs.nim')
-rw-r--r--compiler/ccgexprs.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/ccgexprs.nim b/compiler/ccgexprs.nim
index d691b8ea2..0df7e22d3 100644
--- a/compiler/ccgexprs.nim
+++ b/compiler/ccgexprs.nim
@@ -1965,7 +1965,7 @@ proc expr(p: BProc, n: PNode, d: var TLoc) =
       else:
         genProc(p.module, sym)
       putLocIntoDest(p, d, sym.loc)
-    of skProc, skConverter, skIterators:
+    of skProc, skConverter, skIterator:
       if sfCompileTime in sym.flags:
         localError(n.info, "request to generate code for .compileTime proc: " &
            sym.name.s)