aboutsummaryrefslogtreecommitdiff
path: root/gcc/ifcvt.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@vlsi1.ultra.nyu.edu>2001-11-11 11:02:26 +0000
committerRichard Kenner <kenner@gcc.gnu.org>2001-11-11 06:02:26 -0500
commit04050c690de7b72c52895edb922c807279cac4b1 (patch)
tree7505cb28fd2ea0a6dee73c00724fe0ab8515303b /gcc/ifcvt.c
parentd746694a4593b1401b9638d605f59083d488af1e (diff)
downloadgcc-04050c690de7b72c52895edb922c807279cac4b1.zip
gcc-04050c690de7b72c52895edb922c807279cac4b1.tar.gz
gcc-04050c690de7b72c52895edb922c807279cac4b1.tar.bz2
expmed.c (extract_bit_field): No longer pass in alignment.
* expmed.c (extract_bit_field): No longer pass in alignment. (extract_fixed_bit_field, extract_split_bit_field): Likewise. (store_bit_field, store_fixed_bit_field, store_split_bit_field): Likewise. * expr.c (store_constructor, store_constructor_field): Likewise. (store_field, emit_group_load, emit_group_store): Likewise. * expr.h (emit_group_load, emit_group_store): Delete ALIGN parm. (store_bit_field, extract_bit_field): Likewise. * calls.c, expr.c, function.c: Change calls to above functions. * ifcvt.c, stmt.c: Likewise. From-SVN: r46926
Diffstat (limited to 'gcc/ifcvt.c')
-rw-r--r--gcc/ifcvt.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/ifcvt.c b/gcc/ifcvt.c
index d21b3fa..e056cad 100644
--- a/gcc/ifcvt.c
+++ b/gcc/ifcvt.c
@@ -580,8 +580,7 @@ noce_emit_move_insn (x, y)
outmode = GET_MODE (outer);
inmode = GET_MODE (inner);
bitpos = SUBREG_BYTE (outer) * BITS_PER_UNIT;
- store_bit_field (inner, GET_MODE_BITSIZE (outmode),
- bitpos, outmode, y, GET_MODE_BITSIZE (inmode),
+ store_bit_field (inner, GET_MODE_BITSIZE (outmode), bitpos, outmode, y,
GET_MODE_BITSIZE (inmode));
}