From: Franz Sirl Date: Sun, 2 Jan 2000 13:13:37 +0000 (+0000) Subject: expr.c (store_constructor_field): Fix typo introduced with last gcc2 merge. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0db5adc6fb11ea4294f557776fdcbf2f8ae57fbf;p=gcc.git expr.c (store_constructor_field): Fix typo introduced with last gcc2 merge. * expr.c (store_constructor_field): Fix typo introduced with last gcc2 merge. From-SVN: r31166 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d7e736528a0..01de4f4f7ec 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-01-02 Franz Sirl + + * expr.c (store_constructor_field): Fix typo introduced with last + gcc2 merge. + 2000-01-01 Mark Mitchell * tree.h (BINFO_N_BASETYPES): New macro. diff --git a/gcc/expr.c b/gcc/expr.c index ac498a481e6..e7084aeb614 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -4079,7 +4079,7 @@ store_constructor_field (target, bitsize, bitpos, else store_field (target, bitsize, bitpos, mode, exp, VOIDmode, 0, (align + BITS_PER_UNIT - 1) / BITS_PER_UNIT, - int_size_in_bytes (type), cleared); + int_size_in_bytes (type), 0); } /* Store the value of constructor EXP into the rtx TARGET.