Commit 8e90a239 by Richard Stallman

(ASM_OUTPUT_ALIGN_CODE): Override as no-op.

From-SVN: r5158
parent e5ec2eb8
...@@ -75,10 +75,11 @@ output_file_directive ((FILE), main_input_filename) ...@@ -75,10 +75,11 @@ output_file_directive ((FILE), main_input_filename)
#define ASM_OUTPUT_ALIGN(FILE,LOG) \ #define ASM_OUTPUT_ALIGN(FILE,LOG) \
fprintf (FILE, "\t.align %d\n", 1 << (LOG)) fprintf (FILE, "\t.align %d\n", 1 << (LOG))
/* The Encore assembler doesn't seem to accept the usual second argument. */ /* The Encore assembler doesn't seem to accept the usual second argument
and warns that .align may not work in the text section if optimization
is on. */
#undef ASM_OUTPUT_ALIGN_CODE #undef ASM_OUTPUT_ALIGN_CODE
#define ASM_OUTPUT_ALIGN_CODE(FILE) \ #define ASM_OUTPUT_ALIGN_CODE(FILE)
fprintf (FILE, "\t.align 2\n")
/* /*
* Internal labels are prefixed with a period. * Internal labels are prefixed with a period.
......
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