diff options
author | flywind <xzsflywind@gmail.com> | 2022-01-17 04:10:35 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-16 21:10:35 +0100 |
commit | 15e3813d96ad5646476b629f3a20ece89dff064d (patch) | |
tree | c7173658778b86b2dc3fec3b4c5f2243e6a0374a /compiler | |
parent | d102b2f54c41f19a0545f28109d0a93550b5d886 (diff) | |
download | Nim-15e3813d96ad5646476b629f3a20ece89dff064d.tar.gz |
add mm to compilesettings; deprecate gc (#19394)
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/vmops.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/vmops.nim b/compiler/vmops.nim index 22a632ee9..018e7b9c6 100644 --- a/compiler/vmops.nim +++ b/compiler/vmops.nim @@ -135,6 +135,7 @@ when defined(nimHasInvariant): of backend: result = $conf.backend of libPath: result = conf.libpath.string of gc: result = $conf.selectedGC + of mm: result = $conf.selectedGC proc querySettingSeqImpl(conf: ConfigRef, switch: BiggestInt): seq[string] = template copySeq(field: untyped): untyped = |