Commit 744bfbfa by Jeffrey A Law Committed by Jeff Law

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
parent 6e898acd
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 <kenner@vlsi1.ultra.nyu.edu> Thu Mar 30 06:32:51 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* expr.c (move_by_pieces_ninsns): Fix one more missing align * expr.c (move_by_pieces_ninsns): Fix one more missing align
......
...@@ -6441,7 +6441,7 @@ expand_function_end (filename, line, end_bindings) ...@@ -6441,7 +6441,7 @@ expand_function_end (filename, line, end_bindings)
blktramp = change_address (initial_trampoline, BLKmode, tramp); blktramp = change_address (initial_trampoline, BLKmode, tramp);
emit_block_move (blktramp, initial_trampoline, emit_block_move (blktramp, initial_trampoline,
GEN_INT (TRAMPOLINE_SIZE), GEN_INT (TRAMPOLINE_SIZE),
TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT); TRAMPOLINE_ALIGNMENT);
#endif #endif
INITIALIZE_TRAMPOLINE (tramp, XEXP (DECL_RTL (function), 0), context); INITIALIZE_TRAMPOLINE (tramp, XEXP (DECL_RTL (function), 0), context);
seq = get_insns (); seq = get_insns ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment