diff options
Diffstat (limited to 'lib/system')
-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" |