Commit d5967781 by Michael Meissner

Fix ASM_OUTPUT_ALIGN

From-SVN: r11525
parent 2aa35c63
...@@ -202,3 +202,11 @@ while (0) ...@@ -202,3 +202,11 @@ while (0)
stabs entry for the function name first. */ stabs entry for the function name first. */
#define DBX_FUNCTION_FIRST #define DBX_FUNCTION_FIRST
/* This is how to output an assembler line
that says to advance the location counter
to a multiple of 2**LOG bytes. */
#undef ASM_OUTPUT_ALIGN
#define ASM_OUTPUT_ALIGN(FILE,LOG) \
if ((LOG)!=0) fprintf ((FILE), "\t.align %d\n", 1<<(LOG))
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