summaryrefslogtreecommitdiff
path: root/iseq.c
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-12-23 01:53:48 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-12-23 01:53:48 +0000
commita747834a69ffebd8a7b86e16b62fe7a36b30cf21 (patch)
treece884a5c6576a0b1f373d026ba7fb9dd32a7183f /iseq.c
parent2a723132e92b14fd6be25d13c791c719685850f5 (diff)
iseq.c: Remove unused macro in r61395
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61422 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'iseq.c')
-rw-r--r--iseq.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/iseq.c b/iseq.c
index 643bd5d7a8..a8895a562f 100644
--- a/iseq.c
+++ b/iseq.c
@@ -1516,7 +1516,6 @@ rb_insn_operand_intern(const rb_iseq_t *iseq,
if (ci->flag) {
VALUE flags = rb_ary_new();
# define CALL_FLAG(n) if (ci->flag & VM_CALL_##n) rb_ary_push(flags, rb_str_new2(#n))
-# define CALL_OPT_FLAG(n) if (ci->flag & VM_CALL_OPT_##n) rb_ary_push(flags, rb_str_new2(#n))
CALL_FLAG(ARGS_SPLAT);
CALL_FLAG(ARGS_BLOCKARG);
CALL_FLAG(ARGS_BLOCKARG_BLOCKPARAM);