aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-24 13:01:09 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-24 13:01:09 +0000
commit155149109a9c6d6ae79bf40398cb51e8883dad26 (patch)
tree0ce5e410a1bd684f028707f7868516de9dc828a2
parentf23e8d87c01c751094b58fc13cde1da59ed7eda6 (diff)
downloadruby-155149109a9c6d6ae79bf40398cb51e8883dad26.tar.gz
* compile.c (iseq_peephole_optimize): fix typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20970 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--compile.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 9c74f68e65..141eaee793 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/compile.c b/compile.c
index 741e9706bb..30029ed98a 100644
--- a/compile.c
+++ b/compile.c
@@ -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);