Commit de7d9320 by Jan Brittenson

(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
parent b92a98fd
......@@ -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))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment