From 79fe87500ff550bba5a2145d2cc405c9e0c944af Mon Sep 17 00:00:00 2001 From: Andreas Rumpf Date: Wed, 13 May 2020 22:17:38 +0200 Subject: [PATCH] fixes #13935 --- lib/system/mm/malloc.nim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/system/mm/malloc.nim b/lib/system/mm/malloc.nim index 0525b09511..883baaeb47 100644 --- a/lib/system/mm/malloc.nim +++ b/lib/system/mm/malloc.nim @@ -1,4 +1,6 @@ +{.push stackTrace: off.} + proc allocImpl(size: Natural): pointer = c_malloc(size.csize_t) @@ -81,3 +83,4 @@ proc dealloc(r: var MemRegion, p: pointer) = dealloc(p) proc deallocOsPages(r: var MemRegion) = discard proc deallocOsPages() = discard +{.pop.}