diff options
author | Takashi Kokubun <[email protected]> | 2024-01-16 17:31:26 -0800 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2024-01-16 17:31:27 -0800 |
commit | 8642a573e6d1091fefbb552bb714ebcf8da66289 (patch) | |
tree | 45e92c6488c926888350cbcc5d7e322eefa74845 /vm_trace.c | |
parent | e37a37e696fdb97a3028f04d8439c010d52adb62 (diff) |
Rename BUILTIN_ATTR_SINGLE_NOARG_INLINE
to BUILTIN_ATTR_SINGLE_NOARG_LEAF
The attribute was created when the other attribute was called BUILTIN_ATTR_INLINE.
Now that the original attribute is renamed to BUILTIN_ATTR_LEAF, it's
only confusing that we call it "_INLINE".
Diffstat (limited to 'vm_trace.c')
-rw-r--r-- | vm_trace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_trace.c b/vm_trace.c index 02008166e4..fb896fd423 100644 --- a/vm_trace.c +++ b/vm_trace.c @@ -1273,7 +1273,7 @@ rb_tracepoint_enable_for_target(VALUE tpval, VALUE target, VALUE target_line) rb_hash_aset(tp->local_target_set, (VALUE)iseq, Qtrue); if ((tp->events & (RUBY_EVENT_CALL | RUBY_EVENT_RETURN)) && - iseq->body->builtin_attrs & BUILTIN_ATTR_SINGLE_NOARG_INLINE) { + iseq->body->builtin_attrs & BUILTIN_ATTR_SINGLE_NOARG_LEAF) { rb_clear_bf_ccs(); } |