This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Fix to typo in recent change


Mon Mar 27 08:58:34 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>

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

*** expr.c.mar27	Sun Mar 26 08:37:07 2000
--- expr.c	Mon Mar 27 08:38:26 2000
*************** expand_assignment (to, from, want_value,
*** 3069,3073 ****
  
  	  emit_block_move (inner_to_rtx, from_rtx, expr_size (from),
! 			   MIN (alignment, from_align) / BITS_PER_UNIT);
  	  free_temp_slots ();
  	  pop_temp_slots ();
--- 3069,3073 ----
  
  	  emit_block_move (inner_to_rtx, from_rtx, expr_size (from),
! 			   MIN (alignment, from_align / BITS_PER_UNIT));
  	  free_temp_slots ();
  	  pop_temp_slots ();

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]