diff --git a/compiler/ccgstmts.nim b/compiler/ccgstmts.nim index f725a31f1b..9c0d522212 100755 --- a/compiler/ccgstmts.nim +++ b/compiler/ccgstmts.nim @@ -725,7 +725,10 @@ proc genStmts(p: BProc, t: PNode) = genLineDir(p, t) initLocExpr(p, t, a) of nkAsgn: genAsgn(p, t, fastAsgn=false) - of nkFastAsgn: genAsgn(p, t, fastAsgn=true) + of nkFastAsgn: + # transf is overly aggressive with 'nkFastAsgn', so we work around here. + # See tests/run/tcnstseq3 for an example that would fail otherwise. + genAsgn(p, t, fastAsgn=p.prc != nil) of nkDiscardStmt: genLineDir(p, t) initLocExpr(p, t.sons[0], a) diff --git a/compiler/cgendata.nim b/compiler/cgendata.nim index d93c107acd..c58c64250f 100644 --- a/compiler/cgendata.nim +++ b/compiler/cgendata.nim @@ -36,7 +36,7 @@ type cfsDynLibInit, # section for init of dynamic library binding cfsDynLibDeinit # section for deinitialization of dynamic # libraries - TCTypeKind* = enum # describes the type kind of a C type + TCTypeKind* = enum # describes the type kind of a C type ctVoid, ctChar, ctBool, ctUInt, ctUInt8, ctUInt16, ctUInt32, ctUInt64, ctInt, ctInt8, ctInt16, ctInt32, ctInt64, ctFloat, ctFloat32, ctFloat64, ctFloat128, ctArray, ctStruct, ctPtr, ctNimStr, ctNimSeq, ctProc, ctCString diff --git a/web/index.txt b/web/index.txt index cf8e59cdd1..3e939f492f 100755 --- a/web/index.txt +++ b/web/index.txt @@ -42,7 +42,7 @@ priority). Nimrod is efficient =================== -* Native code generation (currently via compilation to C), not dependant on a +* Native code generation (currently via compilation to C), not dependent on a virtual machine: **Nimrod produces small executables without dependencies for easy redistribution.** * A fast **non-tracing** garbage collector that should be well suited for soft