diff options
author | rku <rokups@zoho.com> | 2015-06-08 14:22:04 +0300 |
---|---|---|
committer | bit <rndbit@sysret.net> | 2015-06-10 10:25:36 +0300 |
commit | 3984fecae66f4578dc806a37b19cee13b92643c0 (patch) | |
tree | e3be06613ecaf46e440daba6727c41ed8d51c97c /lib | |
parent | 47114342c4b9a09214029f7e46e9f8679e274253 (diff) | |
download | Nim-3984fecae66f4578dc806a37b19cee13b92643c0.tar.gz |
Removed magics: mBitnotI64
Diffstat (limited to 'lib')
-rw-r--r-- | lib/system.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system.nim b/lib/system.nim index 7e5c5cb8c..d65a69e35 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -677,7 +677,7 @@ proc `not` *(x: int): int {.magic: "BitnotI", noSideEffect.} proc `not` *(x: int8): int8 {.magic: "BitnotI", noSideEffect.} proc `not` *(x: int16): int16 {.magic: "BitnotI", noSideEffect.} proc `not` *(x: int32): int32 {.magic: "BitnotI", noSideEffect.} -proc `not` *(x: int64): int64 {.magic: "BitnotI64", noSideEffect.} +proc `not` *(x: int64): int64 {.magic: "BitnotI", noSideEffect.} ## computes the `bitwise complement` of the integer `x`. proc `+` *(x, y: int): int {.magic: "AddI", noSideEffect.} |