From 3ef4db15e95740839a0ed6d0224b2c9562bb2544 Mon Sep 17 00:00:00 2001 From: tenderlove Date: Tue, 9 Apr 2019 20:32:04 +0000 Subject: Adding `GC.compact` and compacting GC support. This commit adds the new method `GC.compact` and compacting GC support. Please see this issue for caveats: https://bugs.ruby-lang.org/issues/15626 [Feature #15626] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67479 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_eval.c | 1 + 1 file changed, 1 insertion(+) (limited to 'vm_eval.c') diff --git a/vm_eval.c b/vm_eval.c index f05621e2b4..fc271415a6 100644 --- a/vm_eval.c +++ b/vm_eval.c @@ -484,6 +484,7 @@ rb_type_str(enum ruby_value_type type) case type_case(T_NODE); case type_case(T_ICLASS); case type_case(T_ZOMBIE); + case type_case(T_MOVED); case T_MASK: break; } #undef type_case -- cgit v1.2.3