1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Check writebarrier arguments only when RGENGC_CHECK_MODE [ci skip]

The commit 575ae50d16 was for debugging
the failure triggered by f55212bce9, and
it was fixed at the commit 39f7eddec4.
This commit is contained in:
Nobuyoshi Nakada 2022-10-21 10:02:16 +09:00
parent 39f7eddec4
commit e72c5044ce
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

6
gc.c
View file

@ -8920,8 +8920,10 @@ rb_gc_writebarrier(VALUE a, VALUE b)
{
rb_objspace_t *objspace = &rb_objspace;
if (SPECIAL_CONST_P(a)) rb_bug("rb_gc_writebarrier: a is special const: %"PRIxVALUE, a);
if (SPECIAL_CONST_P(b)) rb_bug("rb_gc_writebarrier: b is special const: %"PRIxVALUE, b);
if (RGENGC_CHECK_MODE) {
if (SPECIAL_CONST_P(a)) rb_bug("rb_gc_writebarrier: a is special const: %"PRIxVALUE, a);
if (SPECIAL_CONST_P(b)) rb_bug("rb_gc_writebarrier: b is special const: %"PRIxVALUE, b);
}
retry:
if (!is_incremental_marking(objspace)) {