]> gcc.gnu.org Git - gcc.git/commitdiff
* expr.c (expand_assignent): Fix typo in last change.
authorRichard Kenner <kenner@vlsi1.ultra.nyu.edu>
Mon, 27 Mar 2000 14:06:18 +0000 (14:06 +0000)
committerRichard Kenner <kenner@gcc.gnu.org>
Mon, 27 Mar 2000 14:06:18 +0000 (09:06 -0500)
From-SVN: r32764

gcc/ChangeLog
gcc/expr.c

index f5cef120822b3951c88e5891d98a14a7f39a36ef..7eebda9bb58ef722b38844ee9834507a53d96f97 100644 (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>
index 3e0085d0b46f60d4140d4989aee54402f4a82e5e..fc390689727365332af9821b4150268af8acd960 100644 (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;
This page took 1.001002 seconds and 5 git commands to generate.