diff options
author | Araq <rumpf_a@web.de> | 2014-08-14 02:42:26 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-08-14 02:42:26 +0200 |
commit | 2728bbccc4888ddc90adbdf469891935407b80af (patch) | |
tree | 450717e4fe08c97e5a45a81262f1b88441ebf406 /lib | |
parent | 27b9d10570078c35a5d1b59010ccc6c1a3927f04 (diff) | |
download | Nim-2728bbccc4888ddc90adbdf469891935407b80af.tar.gz |
fixes newly introduced bugs
Diffstat (limited to 'lib')
-rw-r--r-- | lib/system.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system.nim b/lib/system.nim index 8ab3ee2e5..3bf65c695 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -2185,7 +2185,7 @@ when not defined(JS): #and not defined(NimrodVM): proc initStackBottomWith(locals: pointer) {.inline, compilerproc.} = # We need to keep initStackBottom around for now to avoid # bootstrapping problems. - when defined(setStackBottom): + when declared(setStackBottom): setStackBottom(locals) var |