summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-08-23 07:59:42 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-08-23 07:59:42 +0000
commit2f88c6593ed75a2ec8dcaa65decebe41df7c06ec (patch)
tree547bf11234e5b11c20ddc2948e767c04fe07218a
parent2fbe7107a1118e8828f1e7a807c66f5583bfb850 (diff)
downloadruby-2f88c6593ed75a2ec8dcaa65decebe41df7c06ec.tar.gz
ruby-2f88c6593ed75a2ec8dcaa65decebe41df7c06ec.tar.xz
ruby-2f88c6593ed75a2ec8dcaa65decebe41df7c06ec.zip
* compile.c (compile_massign), insnhelper.ci (vm_throw): not use C99
comment. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13239 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--compile.c2
-rw-r--r--insnhelper.ci2
3 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 8e133903b..3e4754669 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,7 @@
-Thu Aug 23 16:57:01 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
+Thu Aug 23 16:59:40 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * compile.c (compile_massign), insnhelper.ci (vm_throw): not use C99
+ comment.
* cont.c (rb_cont_call, fiber_switch, rb_fiber_resume, rb_fiber_yield):
suppress warnings.
diff --git a/compile.c b/compile.c
index 0a725cb68..0662cc63f 100644
--- a/compile.c
+++ b/compile.c
@@ -2000,7 +2000,7 @@ compile_massign(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE *node, int poped)
if (!poped && 0) {
/* optimized one */
- //compile_massign_opt(iseq, ret, rhsn, splatn, lhsn, llen);
+ /*compile_massign_opt(iseq, ret, rhsn, splatn, lhsn, llen);*/
}
else {
DECL_ANCHOR(lhsseq);
diff --git a/insnhelper.ci b/insnhelper.ci
index 4c52e5b01..4c76ff146 100644
--- a/insnhelper.ci
+++ b/insnhelper.ci
@@ -1315,7 +1315,7 @@ vm_throw(rb_thread_t *th, rb_control_frame_t *reg_cfp, rb_num_t throw_state, VAL
}
else {
th->state = TAG_RAISE;
- //th->state = FIX2INT(rb_ivar_get(err, idThrowState));
+ /*th->state = FIX2INT(rb_ivar_get(err, idThrowState));*/
}
return err;
}