From 2f88c6593ed75a2ec8dcaa65decebe41df7c06ec Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 23 Aug 2007 07:59:42 +0000 Subject: * 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 --- ChangeLog | 5 ++++- compile.c | 2 +- insnhelper.ci | 2 +- 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 +Thu Aug 23 16:59:40 2007 Nobuyoshi Nakada + + * 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; } -- cgit