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

* compile.c (iseq_peephole_optimize): fix typo.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20970 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2008-12-24 13:01:09 +00:00
parent f23e8d87c0
commit 155149109a
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Wed Dec 24 21:57:39 2008 Koichi Sasada <ko1@atdot.net>
* compile.c (iseq_peephole_optimize): fix typo.
Sun Dec 21 13:38:04 2008 Koichi Sasada <ko1@atdot.net>
* vm.c (invoke_block_from_c): fix to point right cfp.

View file

@ -1629,7 +1629,7 @@ iseq_peephole_optimize(rb_iseq_t *iseq, LINK_ELEMENT *list, const int do_tailcal
* LABEL1:
* jump LABEL2
*
* => in this case, first jump instruction should jump tp
* => in this case, first jump instruction should jump to
* LABEL2 directly
*/
diobj = (INSN *)get_destination_insn(iobj);