diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 77ff6269d4e..f49b32b9976 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-12-28 Andreas Jaeger + + * expmed.c (store_bit_field): Fix last patch. + 2000-12-28 Alexandre Oliva * config/sh/crt1.asm (start_l): `__SH4_SINGLE_ONLY__' was missing diff --git a/gcc/expmed.c b/gcc/expmed.c index 89aa3e763d7..6d6e6f5d502 100644 --- a/gcc/expmed.c +++ b/gcc/expmed.c @@ -399,7 +399,7 @@ store_bit_field (str_rtx, bitsize, bitnum, fieldmode, value, align, total_size) VOIDmode, because that is what store_field uses to indicate that this is a bit field, but passing VOIDmode to operand_subword_force will result in an abort. */ - fieldmode = smallest_mode_for_size (nwords * BITS_PER_WORD, MODE_INT, 0); + fieldmode = smallest_mode_for_size (nwords * BITS_PER_WORD, MODE_INT); for (i = 0; i < nwords; i++) {