aboutsummaryrefslogtreecommitdiff
path: root/gcc/expmed.c
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2000-12-28 09:51:59 +0100
committerAndreas Jaeger <aj@gcc.gnu.org>2000-12-28 09:51:59 +0100
commitdf7978d9b730b37a91ca6dc9a19c51fc8ee27da9 (patch)
treec8168435e41d7d00fa634cb72e985647432eca7a /gcc/expmed.c
parent78362efbc649f1a467f7f71b3d2a4692bc8ee628 (diff)
downloadgcc-df7978d9b730b37a91ca6dc9a19c51fc8ee27da9.zip
gcc-df7978d9b730b37a91ca6dc9a19c51fc8ee27da9.tar.gz
gcc-df7978d9b730b37a91ca6dc9a19c51fc8ee27da9.tar.bz2
expmed.c (store_bit_field): Fix last patch.
2000-12-28 Andreas Jaeger <aj@suse.de> * expmed.c (store_bit_field): Fix last patch. From-SVN: r38511
Diffstat (limited to 'gcc/expmed.c')
-rw-r--r--gcc/expmed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/expmed.c b/gcc/expmed.c
index 89aa3e7..6d6e6f5 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++)
{