* expr.c (expand_assignent): Fix typo in last change.

From-SVN: r32764
This commit is contained in:
Richard Kenner 2000-03-27 14:06:18 +00:00 committed by Richard Kenner
parent 32b32c8f62
commit 693e30e32d
2 changed files with 3 additions and 1 deletions

View File

@ -5,6 +5,8 @@
Mon Mar 27 06:04:22 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* expr.c (expand_assignment): Fix typo in last change.
* libgcc2.h: Use MIN_UNITS_PER_WORD, not UNITS_PER_WORD.
Sun Mar 26 20:15:26 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>

View File

@ -3459,7 +3459,7 @@ expand_assignment (to, from, want_value, suggest_reg)
bitpos / BITS_PER_UNIT));
emit_block_move (inner_to_rtx, from_rtx, expr_size (from),
MIN (alignment, from_align) / BITS_PER_UNIT);
MIN (alignment, from_align / BITS_PER_UNIT));
free_temp_slots ();
pop_temp_slots ();
return to_rtx;