mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-31 19:40:09 +08:00
* expr.c (expand_assignent): Fix typo in last change.
From-SVN: r32764
This commit is contained in:
parent
32b32c8f62
commit
693e30e32d
@ -5,6 +5,8 @@
|
|||||||
|
|
||||||
Mon Mar 27 06:04:22 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
|
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.
|
* 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>
|
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));
|
bitpos / BITS_PER_UNIT));
|
||||||
|
|
||||||
emit_block_move (inner_to_rtx, from_rtx, expr_size (from),
|
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 ();
|
free_temp_slots ();
|
||||||
pop_temp_slots ();
|
pop_temp_slots ();
|
||||||
return to_rtx;
|
return to_rtx;
|
||||||
|
Loading…
Reference in New Issue
Block a user