From f5bcc56bcd3ca55131d5d766f953c5d52b2924cc Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 12 Oct 2010 13:41:12 +0000 Subject: [PATCH] * 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 --- ChangeLog | 4 +++- compile.c | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index ef1b0c082f..b176a866fd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,6 @@ -Tue Oct 12 22:18:15 2010 Nobuyoshi Nakada +Tue Oct 12 22:41:07 2010 Nobuyoshi Nakada + + * compile.c (iseq_compile_each): fix truncating cast. * cont.c (fiber_setcontext): missing variable definition. diff --git a/compile.c b/compile.c index db4c32fca6..6501565c00 100644 --- a/compile.c +++ b/compile.c @@ -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); }