Commit 073b0524 by Richard Kenner

(TRAMPOLINE_ALIGNMENT): Provide default.

(assemble_trampoline_template): Use TRAMPOLINE_ALIGNMENT instead
of FUNCTION_BOUNDARY.

From-SVN: r13568
parent 189cc377
......@@ -52,6 +52,10 @@ Boston, MA 02111-1307, USA. */
#include <ctype.h>
#ifndef TRAMPOLINE_ALIGNMENT
#define TRAMPOLINE_ALIGNMENT FUNCTION_BOUNDARY
#endif
#ifndef ASM_STABS_OP
#define ASM_STABS_OP ".stabs"
#endif
......@@ -1825,7 +1829,7 @@ assemble_trampoline_template ()
#endif
/* Write the assembler code to define one. */
align = floor_log2 (FUNCTION_BOUNDARY / BITS_PER_UNIT);
align = floor_log2 (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT);
if (align > 0)
ASM_OUTPUT_ALIGN (asm_out_file, align);
......
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