From 6990c7f9cd5108be6d9a490d68ff13ded582558e Mon Sep 17 00:00:00 2001 From: ko1 Date: Wed, 10 Oct 2012 17:52:24 +0000 Subject: * iseq.c (insn_operand_intern): add support disasm TS_CALLINFO operands. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37132 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- iseq.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'iseq.c') diff --git a/iseq.c b/iseq.c index 58f5905f33..42cce0bb0b 100644 --- a/iseq.c +++ b/iseq.c @@ -1040,6 +1040,10 @@ insn_operand_intern(rb_iseq_t *iseq, ret = rb_sprintf("", (struct iseq_inline_cache_entry *)op - iseq->ic_entries); break; + case TS_CALLINFO: + ret = rb_sprintf("", (struct iseq_inline_cache_entry *)op - iseq->callinfo_entries); + break; + case TS_CDHASH: ret = rb_str_new2(""); break; -- cgit v1.2.3