diff options
author | Takashi Kokubun <[email protected]> | 2022-08-25 23:00:18 -0700 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2022-08-25 23:00:19 -0700 |
commit | d6f21b308bcff03e82f8b3dbf11a852ce111b3b3 (patch) | |
tree | 58aaa4f5551b4adae2bf0ac52287162c1f2f4c75 /iseq.c | |
parent | 098a3cfaa7afe40e023e589c92124bac18e207c3 (diff) |
Convert catch_except_t to stdbool
catch_excep_t is a field that exists for MJIT. In the process of
rewriting MJIT in Ruby, I added API to convert 1/0 of _Bool to
true/false, and it seemed confusing and hard to maintain if you
don't use _Bool for *_p fields.
Diffstat (limited to 'iseq.c')
-rw-r--r-- | iseq.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2411,7 +2411,7 @@ rb_iseq_disasm_recursive(const rb_iseq_t *iseq, VALUE indent) rb_str_cat2(str, "== disasm: "); rb_str_append(str, iseq_inspect(iseq)); - rb_str_catf(str, " (catch: %s)", body->catch_except_p ? "TRUE" : "FALSE"); + rb_str_catf(str, " (catch: %s)", body->catch_except_p ? "true" : "false"); if ((l = RSTRING_LEN(str) - indent_len) < header_minlen) { rb_str_modify_expand(str, header_minlen - l); memset(RSTRING_END(str), '=', header_minlen - l); |