summary refs log tree commit diff stats
path: root/compiler
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2018-11-19 11:28:06 +0100
committerAraq <rumpf_a@web.de>2018-11-19 11:28:06 +0100
commit2418d0cac50642131d2b3350ededf2b3a1bd2b1d (patch)
tree14f242c034dd89a13566e37cc2a92af8f0abaf36 /compiler
parent6c7abe6e5b9ff46fdf024e471091799361fb387f (diff)
downloadNim-2418d0cac50642131d2b3350ededf2b3a1bd2b1d.tar.gz
fixes #9743
Diffstat (limited to 'compiler')
-rw-r--r--compiler/semexprs.nim3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/semexprs.nim b/compiler/semexprs.nim
index 3d77ae524..9433a7327 100644
--- a/compiler/semexprs.nim
+++ b/compiler/semexprs.nim
@@ -614,7 +614,8 @@ proc analyseIfAddressTakenInCall(c: PContext, n: PNode) =
   const
     FakeVarParams = {mNew, mNewFinalize, mInc, ast.mDec, mIncl, mExcl,
       mSetLengthStr, mSetLengthSeq, mAppendStrCh, mAppendStrStr, mSwap,
-      mAppendSeqElem, mNewSeq, mReset, mShallowCopy, mDeepCopy}
+      mAppendSeqElem, mNewSeq, mReset, mShallowCopy, mDeepCopy, mMove,
+      mWasMoved}
 
   # get the real type of the callee
   # it may be a proc var with a generic alias type, so we skip over them