(bc_expand_constructor): Delete cast of argument to bc_emit_instruction to HOST_WIDE_INT.

(bc_expand_constructor): Delete cast of argument to
bc_emit_instruction to HOST_WIDE_INT. Move assignment of ptroffs to
separate line.

From-SVN: r5487
This commit is contained in:
Jan Brittenson 1993-09-27 11:21:32 -07:00
parent b92a98fde5
commit de7d93205e

View File

@ -9479,7 +9479,8 @@ bc_expand_constructor (constr)
this code is common for both types of constructors: literals
and non-literals. */
bc_emit_instruction (constP, (HOST_WIDE_INT) ptroffs = bc_define_pointer (l));
ptroffs = bc_define_pointer (l);
bc_emit_instruction (constP, ptroffs);
/* This is all that has to be done if it's a literal. */
if (TREE_CONSTANT (constr))