summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/ruby/internal/core/rarray.h2
-rw-r--r--internal/gc.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/ruby/internal/core/rarray.h b/include/ruby/internal/core/rarray.h
index d9e08839cb..ea37c8dfad 100644
--- a/include/ruby/internal/core/rarray.h
+++ b/include/ruby/internal/core/rarray.h
@@ -131,7 +131,7 @@ enum ruby_rarray_flags {
* store array elements. It was a bad idea to expose this to them.
*/
#if USE_RVARGC
- RARRAY_EMBED_LEN_MASK = RUBY_FL_USER8 | RUBY_FL_USER7 | RUBY_FL_USER6 |
+ RARRAY_EMBED_LEN_MASK = RUBY_FL_USER9 | RUBY_FL_USER8 | RUBY_FL_USER7 | RUBY_FL_USER6 |
RUBY_FL_USER5 | RUBY_FL_USER4 | RUBY_FL_USER3
#else
RARRAY_EMBED_LEN_MASK = RUBY_FL_USER4 | RUBY_FL_USER3
diff --git a/internal/gc.h b/internal/gc.h
index 3346089754..84b7f9fa3e 100644
--- a/internal/gc.h
+++ b/internal/gc.h
@@ -68,7 +68,7 @@ struct rb_objspace; /* in vm_core.h */
(VALUE)(b), __FILE__, __LINE__)
#if USE_RVARGC
-# define SIZE_POOL_COUNT 4
+# define SIZE_POOL_COUNT 5
#else
# define SIZE_POOL_COUNT 1
#endif