1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* backport r33019 from trunk.

* iseq.c (iseq_s_disasm): remove variable which is no longer used
  since r33013.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@33020 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ktsj 2011-08-21 09:00:33 +00:00
parent 4d436eefc2
commit c1ba3ce7a1
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,10 @@
Sun Aug 21 17:58:38 2011 Kazuki Tsujimoto <kazuki@callcc.net>
* backport r33019 from trunk.
* iseq.c (iseq_s_disasm): remove variable which is no longer used
since r33013.
Sun Aug 21 14:20:58 2011 Naohisa Goto <ngotogenome@gmail.com>
* configure.in: use LD_LIBRARY_PATH_64 on 64-bit Solaris.

1
iseq.c
View file

@ -1028,7 +1028,6 @@ iseq_s_disasm(VALUE klass, VALUE body)
if (rb_obj_is_proc(body)) {
rb_proc_t *proc;
VALUE iseqval;
GetProcPtr(body, proc);
iseq = proc->block.iseq;
if (RUBY_VM_NORMAL_ISEQ_P(iseq)) {