diff options
author | Araq <rumpf_a@web.de> | 2013-02-16 22:53:35 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-02-16 22:53:35 +0100 |
commit | 5d119f61d167738bcc314b31580c6aef15f2e822 (patch) | |
tree | cdb68f29143f6b5e65738b9e155197d78160c6a5 /lib/system/mmdisp.nim | |
parent | 1c0c80ef2dba09bb50c470a013f3bdb9391620a7 (diff) | |
download | Nim-5d119f61d167738bcc314b31580c6aef15f2e822.tar.gz |
preparations for a generational GC
Diffstat (limited to 'lib/system/mmdisp.nim')
-rwxr-xr-x | lib/system/mmdisp.nim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/system/mmdisp.nim b/lib/system/mmdisp.nim index eee98fd52..9f37e95c1 100755 --- a/lib/system/mmdisp.nim +++ b/lib/system/mmdisp.nim @@ -1,7 +1,7 @@ # # # Nimrod's Runtime Library -# (c) Copyright 2012 Andreas Rumpf +# (c) Copyright 2013 Andreas Rumpf # # See the file "copying.txt", included in this # distribution, for details about the copyright. @@ -312,6 +312,8 @@ else: elif defined(gcMarkAndSweep): # XXX use 'compileOption' here include "system/gc_ms" + elif defined(gcGenerational): + include "system/gc_genms" else: include "system/gc" |