summary refs log tree commit diff stats
path: root/rod
diff options
context:
space:
mode:
authorAndreas Rumpf <andreas@andreas-desktop>2010-03-17 23:00:27 +0100
committerAndreas Rumpf <andreas@andreas-desktop>2010-03-17 23:00:27 +0100
commit33fbf7fd03145d1de6023edee9c002aec982ffc7 (patch)
tree63a07829aa79682699abdf0f9bfed7e272fc7022 /rod
parent41afb4ee58b12dff68692ed89474f22d07747be6 (diff)
downloadNim-33fbf7fd03145d1de6023edee9c002aec982ffc7.tar.gz
BUGFIX: mEqRef for evalOp
Diffstat (limited to 'rod')
-rwxr-xr-xrod/semfold.nim3
1 files changed, 2 insertions, 1 deletions
diff --git a/rod/semfold.nim b/rod/semfold.nim
index 95710af75..18975a604 100755
--- a/rod/semfold.nim
+++ b/rod/semfold.nim
@@ -195,7 +195,8 @@ proc evalOp(m: TMagic, n, a, b, c: PNode): PNode =
     result = copyTree(a)
     result.typ = n.typ
   of mNewString, mExit, mInc, ast.mDec, mEcho, mAssert, mSwap, mAppendStrCh, 
-     mAppendStrStr, mAppendSeqElem, mSetLengthStr, mSetLengthSeq, mNLen..mNError: 
+     mAppendStrStr, mAppendSeqElem, mSetLengthStr, mSetLengthSeq, 
+     mNLen..mNError, mEqRef: 
     nil
   else: InternalError(a.info, "evalOp(" & $m & ')')