summary refs log tree commit diff stats
path: root/lib/system/arithm.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2015-06-15 00:56:20 +0200
committerAraq <rumpf_a@web.de>2015-06-15 00:56:20 +0200
commit8d39669233880870a1c744e165a8510f5cc8d3c5 (patch)
treeda358a095b0eee0b530b5365e768ec281207e3d9 /lib/system/arithm.nim
parent1452edfbb9d7de1d654248cc709a7436d8d404c2 (diff)
downloadNim-8d39669233880870a1c744e165a8510f5cc8d3c5.tar.gz
fixes #2909
Diffstat (limited to 'lib/system/arithm.nim')
-rw-r--r--lib/system/arithm.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/arithm.nim b/lib/system/arithm.nim
index 907907e24..69c558799 100644
--- a/lib/system/arithm.nim
+++ b/lib/system/arithm.nim
@@ -18,7 +18,7 @@ proc raiseDivByZero {.compilerproc, noinline.} =
   sysFatal(DivByZeroError, "division by zero")
 
 when defined(builtinOverflow):
-# Builtin compiler functions for improved performance
+  # Builtin compiler functions for improved performance
   when sizeof(clong) == 8:
     proc addInt64Overflow[T: int64|int](a, b: T, c: var T): bool {.
       importc: "__builtin_saddl_overflow", nodecl, nosideeffect.}