diff options
author | Richard Kenner <kenner@vlsi1.ultra.nyu.edu> | 2001-11-11 11:02:26 +0000 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2001-11-11 06:02:26 -0500 |
commit | 04050c690de7b72c52895edb922c807279cac4b1 (patch) | |
tree | 7505cb28fd2ea0a6dee73c00724fe0ab8515303b /gcc/expr.h | |
parent | d746694a4593b1401b9638d605f59083d488af1e (diff) | |
download | gcc-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/expr.h')
-rw-r--r-- | gcc/expr.h | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -423,11 +423,11 @@ extern void move_block_from_reg PARAMS ((int, rtx, int, int)); /* Load a BLKmode value into non-consecutive registers represented by a PARALLEL. */ -extern void emit_group_load PARAMS ((rtx, rtx, int, unsigned int)); +extern void emit_group_load PARAMS ((rtx, rtx, int)); /* Store a BLKmode value from non-consecutive registers represented by a PARALLEL. */ -extern void emit_group_store PARAMS ((rtx, rtx, int, unsigned int)); +extern void emit_group_store PARAMS ((rtx, rtx, int)); #ifdef TREE_CODE /* Copy BLKmode object from a set of registers. */ @@ -746,12 +746,11 @@ mode_for_extraction PARAMS ((enum extraction_pattern, int)); extern rtx store_bit_field PARAMS ((rtx, unsigned HOST_WIDE_INT, unsigned HOST_WIDE_INT, - enum machine_mode, rtx, - unsigned int, HOST_WIDE_INT)); + enum machine_mode, rtx, HOST_WIDE_INT)); extern rtx extract_bit_field PARAMS ((rtx, unsigned HOST_WIDE_INT, unsigned HOST_WIDE_INT, int, rtx, enum machine_mode, enum machine_mode, - unsigned int, HOST_WIDE_INT)); + HOST_WIDE_INT)); extern rtx expand_mult PARAMS ((enum machine_mode, rtx, rtx, rtx, int)); extern rtx expand_mult_add PARAMS ((rtx, rtx, rtx, rtx,enum machine_mode, int)); extern rtx expand_mult_highpart_adjust PARAMS ((enum machine_mode, rtx, rtx, rtx, rtx, int)); |