* compile.c (compile_massign), insnhelper.ci (vm_throw): not use C99

comment.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13239 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2007-08-23 07:59:42 +00:00
Родитель e1b18be016
Коммит 7912fdf599
3 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -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.

Просмотреть файл

@ -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);

Просмотреть файл

@ -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;
}