diff options
author | Jeffrey A Law <law@cygnus.com> | 2000-03-30 20:32:31 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2000-03-30 13:32:31 -0700 |
commit | 744bfbfa782d95bec20b3e109bde6ee109588f1a (patch) | |
tree | 8ba4417bacfff7dc419f90ac28b308f7afd85e77 /gcc/function.c | |
parent | 6e898acd022dfec8fe4ac7bd5cfec72cc0d94f4f (diff) | |
download | gcc-744bfbfa782d95bec20b3e109bde6ee109588f1a.zip gcc-744bfbfa782d95bec20b3e109bde6ee109588f1a.tar.gz gcc-744bfbfa782d95bec20b3e109bde6ee109588f1a.tar.bz2 |
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
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/function.c b/gcc/function.c index e74d8ba..b6265f3 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 (); |