diff options
Diffstat (limited to 'lib/system/gc.nim')
-rw-r--r-- | lib/system/gc.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/system/gc.nim b/lib/system/gc.nim index 911b49fdb..0d4eafe93 100644 --- a/lib/system/gc.nim +++ b/lib/system/gc.nim @@ -680,7 +680,8 @@ proc gcMark(gch: var GcHeap, p: pointer) {.inline.} = garbage collection that is used by Nim. For more information, please see the documentation of `CLANG_NO_SANITIZE_ADDRESS` in `lib/nimbase.h`. ]# -proc markStackAndRegisters(gch: var GcHeap) {.noinline, cdecl, codegenDecl: "CLANG_NO_SANITIZE_ADDRESS $# $#$#".} = +proc markStackAndRegisters(gch: var GcHeap) {.noinline, cdecl, + codegenDecl: "CLANG_NO_SANITIZE_ADDRESS $# $#$#".} = forEachStackSlot(gch, gcMark) proc collectZCT(gch: var GcHeap): bool = |