diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2015-06-12 00:06:39 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2015-06-12 00:06:39 +0200 |
commit | e7bb37d12c11bae7ace5b876da2a50f6ffa5f8de (patch) | |
tree | 8b236ff522ed3b00801c0f456af0f4abc9141a7e /compiler/forloops.nim | |
parent | f9a0a5fc66ed42c844b74b5f85abb24d1e60b24f (diff) | |
parent | 87b6220897035e0844958b6d9a2fd4cd7ad5dd46 (diff) | |
download | Nim-e7bb37d12c11bae7ace5b876da2a50f6ffa5f8de.tar.gz |
Merge pull request #2896 from r-ku/I64-magics-gone
I64 magics gone
Diffstat (limited to 'compiler/forloops.nim')
-rw-r--r-- | compiler/forloops.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/forloops.nim b/compiler/forloops.nim index efe000968..949b7d8c6 100644 --- a/compiler/forloops.nim +++ b/compiler/forloops.nim @@ -12,9 +12,9 @@ import ast, astalgo const - someCmp = {mEqI, mEqI64, mEqF64, mEqEnum, mEqCh, mEqB, mEqRef, mEqProc, - mEqUntracedRef, mLeI, mLeI64, mLeF64, mLeU, mLeU64, mLeEnum, - mLeCh, mLeB, mLePtr, mLtI, mLtI64, mLtF64, mLtU, mLtU64, mLtEnum, + someCmp = {mEqI, mEqF64, mEqEnum, mEqCh, mEqB, mEqRef, mEqProc, + mEqUntracedRef, mLeI, mLeF64, mLeU, mLeU64, mLeEnum, + mLeCh, mLeB, mLePtr, mLtI, mLtF64, mLtU, mLtU64, mLtEnum, mLtCh, mLtB, mLtPtr} proc isCounter(s: PSym): bool {.inline.} = |