From f5bcc56bcd3ca55131d5d766f953c5d52b2924cc Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 12 Oct 2010 13:41:12 +0000 Subject: * 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 --- compile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compile.c') 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); } -- cgit v1.2.3