aboutsummaryrefslogtreecommitdiffstats
path: root/vm_callinfo.h
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-04-01 10:21:52 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2023-04-01 10:22:47 -0700
commitdf1b007fbd64363067539ff7e89aff6368d605ab (patch)
treeb13f2330831c7c72d0d8e712dc1d8fddf0686f2a /vm_callinfo.h
parent175538e433badf179d712f5ead659f29f5d11654 (diff)
downloadruby-df1b007fbd64363067539ff7e89aff6368d605ab.tar.gz
Remove unused VM_CALL_BLOCKISEQ flag
Diffstat (limited to 'vm_callinfo.h')
-rw-r--r--vm_callinfo.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/vm_callinfo.h b/vm_callinfo.h
index 1c61a839d3..ccdf720cfc 100644
--- a/vm_callinfo.h
+++ b/vm_callinfo.h
@@ -18,7 +18,6 @@ enum vm_call_flag_bits {
VM_CALL_FCALL_bit, // m(args) # receiver is self
VM_CALL_VCALL_bit, // m # method call that looks like a local variable
VM_CALL_ARGS_SIMPLE_bit, // (ci->flag & (SPLAT|BLOCKARG)) && blockiseq == NULL && ci->kw_arg == NULL
- VM_CALL_BLOCKISEQ_bit, // has blockiseq
VM_CALL_KWARG_bit, // has kwarg
VM_CALL_KW_SPLAT_bit, // m(**opts)
VM_CALL_TAILCALL_bit, // located at tail position
@@ -34,7 +33,6 @@ enum vm_call_flag_bits {
#define VM_CALL_FCALL (0x01 << VM_CALL_FCALL_bit)
#define VM_CALL_VCALL (0x01 << VM_CALL_VCALL_bit)
#define VM_CALL_ARGS_SIMPLE (0x01 << VM_CALL_ARGS_SIMPLE_bit)
-#define VM_CALL_BLOCKISEQ (0x01 << VM_CALL_BLOCKISEQ_bit)
#define VM_CALL_KWARG (0x01 << VM_CALL_KWARG_bit)
#define VM_CALL_KW_SPLAT (0x01 << VM_CALL_KW_SPLAT_bit)
#define VM_CALL_TAILCALL (0x01 << VM_CALL_TAILCALL_bit)