diff options
author | Jan Brittenson <bson@gnu.org> | 1993-09-27 11:21:32 -0700 |
---|---|---|
committer | Jan Brittenson <bson@gnu.org> | 1993-09-27 11:21:32 -0700 |
commit | de7d93205e595f0613b29fd2f9509903ce1f96d4 (patch) | |
tree | 1cf4afca78b231e258d0ec996fab8b7b09ebcc2e /gcc | |
parent | b92a98fde5943fba6a7ce52b797ffa0b491b3320 (diff) | |
download | gcc-de7d93205e595f0613b29fd2f9509903ce1f96d4.zip gcc-de7d93205e595f0613b29fd2f9509903ce1f96d4.tar.gz gcc-de7d93205e595f0613b29fd2f9509903ce1f96d4.tar.bz2 |
(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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/expr.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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)) |