зеркало из https://github.com/github/ruby.git
* compile.c (iseq_compile_each): fix truncating cast.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29458 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
4fe1e7c69b
Коммит
f5bcc56bcd
|
@ -1,4 +1,6 @@
|
|||
Tue Oct 12 22:18:15 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
Tue Oct 12 22:41:07 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* compile.c (iseq_compile_each): fix truncating cast.
|
||||
|
||||
* cont.c (fiber_setcontext): missing variable definition.
|
||||
|
||||
|
|
|
@ -3700,7 +3700,7 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped)
|
|||
ADD_INSN(ret, nd_line(node), dup);
|
||||
}
|
||||
ADD_INSN1(ret, nd_line(node), setglobal,
|
||||
(((long)node->nd_entry) | 1));
|
||||
((VALUE)node->nd_entry | 1));
|
||||
break;
|
||||
}
|
||||
case NODE_IASGN:
|
||||
|
@ -4338,7 +4338,7 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped)
|
|||
}
|
||||
case NODE_GVAR:{
|
||||
ADD_INSN1(ret, nd_line(node), getglobal,
|
||||
(((long)node->nd_entry) | 1));
|
||||
((VALUE)node->nd_entry | 1));
|
||||
if (poped) {
|
||||
ADD_INSN(ret, nd_line(node), pop);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче