summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 8e133903bd..3e47546697 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 0a725cb68b..0662cc63f5 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 4c52e5b01d..4c76ff1460 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;
}