Treat zig like clang/gcc wrt integer arithmetic. (#13957)

This commit is contained in:
Hessam Mehr
2020-04-22 07:31:24 +01:00
committed by GitHub
parent 22418ce8fb
commit c3f4b93060

View File

@@ -19,7 +19,7 @@ proc raiseDivByZero {.compilerproc, noinline.} =
{.pragma: nimbaseH, importc, nodecl, noSideEffect, compilerproc.}
when (defined(gcc) or defined(clang)) and not defined(nimEmulateOverflowChecks):
when (defined(gcc) or defined(clang) or defined(zig)) and not defined(nimEmulateOverflowChecks):
# take the #define from nimbase.h
proc nimAddInt(a, b: int, res: ptr int): bool {.nimbaseH.}