mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
vm_dump.c: unused variable
* vm_dump.c (vm_stack_dump_each): remove never-used variable and dead code for it. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52132 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
1bcc7ebda2
commit
278ca4dbe8
1 changed files with 2 additions and 15 deletions
17
vm_dump.c
17
vm_dump.c
|
@ -251,24 +251,11 @@ vm_stack_dump_each(rb_thread_t *th, rb_control_frame_t *cfp)
|
|||
VALUE *ep = cfp->ep;
|
||||
|
||||
int argc = 0, local_size = 0;
|
||||
const char *name;
|
||||
rb_iseq_t *iseq = cfp->iseq;
|
||||
|
||||
if (iseq == 0) {
|
||||
if (RUBYVM_CFUNC_FRAME_P(cfp)) {
|
||||
name = rb_id2name(cfp->me->called_id);
|
||||
}
|
||||
else {
|
||||
name = "?";
|
||||
}
|
||||
}
|
||||
else if (RUBY_VM_IFUNC_P(iseq)) {
|
||||
name = "<ifunc>";
|
||||
}
|
||||
else {
|
||||
if (RUBY_VM_NORMAL_ISEQ_P(iseq)) {
|
||||
argc = iseq->body->param.lead_num;
|
||||
local_size = iseq->body->local_size;
|
||||
name = RSTRING_PTR(iseq->body->location.label);
|
||||
}
|
||||
|
||||
/* stack trace header */
|
||||
|
@ -283,7 +270,7 @@ vm_stack_dump_each(rb_thread_t *th, rb_control_frame_t *cfp)
|
|||
VM_FRAME_TYPE(cfp) == VM_FRAME_MAGIC_IFUNC ||
|
||||
VM_FRAME_TYPE(cfp) == VM_FRAME_MAGIC_EVAL ||
|
||||
VM_FRAME_TYPE(cfp) == VM_FRAME_MAGIC_RESCUE)
|
||||
{
|
||||
{
|
||||
|
||||
VALUE *ptr = ep - local_size;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue