summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/vm_core.h b/vm_core.h
index 354603514e..724b3e32ad 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -365,10 +365,8 @@ enum rb_iseq_type {
enum rb_builtin_attr {
// The iseq does not call methods.
BUILTIN_ATTR_LEAF = 0x01,
- // The iseq does not allocate objects.
- BUILTIN_ATTR_NO_GC = 0x02,
// This iseq only contains single `opt_invokebuiltin_delegate_leave` instruction with 0 arguments.
- BUILTIN_ATTR_SINGLE_NOARG_INLINE = 0x04,
+ BUILTIN_ATTR_SINGLE_NOARG_INLINE = 0x02,
};
typedef VALUE (*rb_jit_func_t)(struct rb_execution_context_struct *, struct rb_control_frame_struct *);