From b352098021d0d7be6f551de3c3ea80979f2e88e9 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Sat, 10 Jul 2004 10:04:58 +0200 Subject: expr.h (store_bit_field, [...]): Remove last argument. * expr.h (store_bit_field, extract_bit_field): Remove last argument. * expmed.c (store_bit_field, extract_bit_field): Remove last argument. * builtins.c (expand_builtin_signbit): Adjust callers. * optabs.c (expand_vector_binop, expand_vector_unop): Likewise. * calls.c (store_unaligned_arguments_into_pseudos): Likewise. * ifcvt.c (noce_emit_move_insn): Likewise. * stmt.c (expand_return): Likewise. * expr.c (emit_group_load, emit_group_store, copy_blkmode_from_reg, store_field, expand_expr_real_1): Likewise. From-SVN: r84447 --- gcc/stmt.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'gcc/stmt.c') diff --git a/gcc/stmt.c b/gcc/stmt.c index f3bf872..a26d8e6 100644 --- a/gcc/stmt.c +++ b/gcc/stmt.c @@ -2115,9 +2115,7 @@ expand_return (tree retval) store_bit_field (dst, bitsize, xbitpos % BITS_PER_WORD, word_mode, extract_bit_field (src, bitsize, bitpos % BITS_PER_WORD, 1, - NULL_RTX, word_mode, word_mode, - BITS_PER_WORD), - BITS_PER_WORD); + NULL_RTX, word_mode, word_mode)); } tmpmode = GET_MODE (result_rtl); -- cgit v1.1