diff options
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/expr.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f5cef12..7eebda9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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> @@ -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; |