From: Jeffrey A Law Date: Thu, 30 Mar 2000 20:32:31 +0000 (+0000) Subject: function.c (expand_function_end): Pass alignment argument to emit_block_move in bits... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=744bfbfa782d95bec20b3e109bde6ee109588f1a;p=gcc.git function.c (expand_function_end): Pass alignment argument to emit_block_move in bits, not bytes. * function.c (expand_function_end): Pass alignment argument to emit_block_move in bits, not bytes. From-SVN: r32835 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e7216124861..8e02f7745d1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Thu Mar 30 13:30:40 2000 Jeffrey A Law (law@cygnus.com) + + * function.c (expand_function_end): Pass alignment argument to + emit_block_move in bits, not bytes. + Thu Mar 30 06:32:51 2000 Richard Kenner * expr.c (move_by_pieces_ninsns): Fix one more missing align diff --git a/gcc/function.c b/gcc/function.c index e74d8ba5b91..b6265f3d913 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -6441,7 +6441,7 @@ expand_function_end (filename, line, end_bindings) blktramp = change_address (initial_trampoline, BLKmode, tramp); emit_block_move (blktramp, initial_trampoline, GEN_INT (TRAMPOLINE_SIZE), - TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT); + TRAMPOLINE_ALIGNMENT); #endif INITIALIZE_TRAMPOLINE (tramp, XEXP (DECL_RTL (function), 0), context); seq = get_insns ();