diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2008-12-12 14:02:27 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2008-12-12 14:02:27 +0100 |
commit | ddaedab835fa7ea3457f21a772d636921defdc46 (patch) | |
tree | 8f96b5a3a6700704e0a64bdcdedee1d2caf68517 /lib/arithm.nim | |
parent | 2cd136cf7a0210e3cfde7a6f8ba32c9f09560047 (diff) | |
download | Nim-ddaedab835fa7ea3457f21a772d636921defdc46.tar.gz |
version 0.7.2
Diffstat (limited to 'lib/arithm.nim')
-rw-r--r-- | lib/arithm.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/arithm.nim b/lib/arithm.nim index 91a2232c9..5c8b5726c 100644 --- a/lib/arithm.nim +++ b/lib/arithm.nim @@ -14,7 +14,7 @@ proc raiseOverflow {.compilerproc, noinline.} = # a single proc to reduce code size to a minimum raise newException(EOverflow, "over- or underflow") -proc raiseDivByZero {.exportc: "raiseDivByZero", noinline.} = +proc raiseDivByZero {.compilerproc, noinline.} = raise newException(EDivByZero, "divison by zero") proc addInt64(a, b: int64): int64 {.compilerProc, inline.} = |