diff options
author | Andreas Rumpf <andreas@andreas-desktop> | 2010-03-17 23:00:27 +0100 |
---|---|---|
committer | Andreas Rumpf <andreas@andreas-desktop> | 2010-03-17 23:00:27 +0100 |
commit | 33fbf7fd03145d1de6023edee9c002aec982ffc7 (patch) | |
tree | 63a07829aa79682699abdf0f9bfed7e272fc7022 /rod | |
parent | 41afb4ee58b12dff68692ed89474f22d07747be6 (diff) | |
download | Nim-33fbf7fd03145d1de6023edee9c002aec982ffc7.tar.gz |
BUGFIX: mEqRef for evalOp
Diffstat (limited to 'rod')
-rwxr-xr-x | rod/semfold.nim | 3 |
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 & ')') |