mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
Remove unused VM_CALL_BLOCKISEQ flag
This commit is contained in:
parent
175538e433
commit
df1b007fbd
3 changed files with 8 additions and 12 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue