diff options
author | Franz Sirl <Franz.Sirl-kernel@lauterbach.com> | 2000-01-02 13:13:37 +0000 |
---|---|---|
committer | Franz Sirl <sirl@gcc.gnu.org> | 2000-01-02 13:13:37 +0000 |
commit | 0db5adc6fb11ea4294f557776fdcbf2f8ae57fbf (patch) | |
tree | 68cd562c95b2017840cc54efd51bd70020423d51 /gcc/expr.c | |
parent | 592f2707b1af37bcd546c05ca852be7003b687be (diff) | |
download | gcc-0db5adc6fb11ea4294f557776fdcbf2f8ae57fbf.zip gcc-0db5adc6fb11ea4294f557776fdcbf2f8ae57fbf.tar.gz gcc-0db5adc6fb11ea4294f557776fdcbf2f8ae57fbf.tar.bz2 |
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
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |