• KOBAYASHI Shuji's avatar
    Ensure initialization of `RVALUE_zero` in `mrb_obj_alloc` · d5cb54d4
    KOBAYASHI Shuji authored
    Union initialization initializes the first member. The first member of
    `RVALUE` is `struct free_obj`, but because it is only 4-words, it seems that
    initialization after the 5th word is not ensured.
    
    Therefore, I created 6-words `struct RVALUE_initializer` for initialization
    and made it the first member.
    d5cb54d4
gc.c 38.1 KB