Commit 14c78e9b by Richard Kenner Committed by Richard Kenner

expr.c (move_by_pieces_ninsns): Fix one more missing align correction.

	* expr.c (move_by_pieces_ninsns): Fix one more missing align
	correction.

From-SVN: r32831
parent 2b968770
Thu Mar 30 06:32:51 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> Thu Mar 30 06:32:51 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* expr.c (move_by_pieces_ninsns): Fix one more missing align
correction.
* expmed.c (store_fixed_bit_field): STRUCT_ALIGN is in bits. * expmed.c (store_fixed_bit_field): STRUCT_ALIGN is in bits.
* calls.c (expand_call): Pass bit alignment to mark_reg_pointer. * calls.c (expand_call): Pass bit alignment to mark_reg_pointer.
......
...@@ -1498,7 +1498,7 @@ move_by_pieces_ninsns (l, align) ...@@ -1498,7 +1498,7 @@ move_by_pieces_ninsns (l, align)
if (! SLOW_UNALIGNED_ACCESS (word_mode, align) if (! SLOW_UNALIGNED_ACCESS (word_mode, align)
|| align > MOVE_MAX * BITS_PER_UNIT || align >= BIGGEST_ALIGNMENT) || align > MOVE_MAX * BITS_PER_UNIT || align >= BIGGEST_ALIGNMENT)
align = MOVE_MAX; align = MOVE_MAX * BITS_PER_UNIT;
while (max_size > 1) while (max_size > 1)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment