Commit 5c23d95b by Richard Stallman

(ASM_OUTPUT_ALIGN_CODE): Override to avoid generating a second argument.

From-SVN: r5156
parent aabe87cd
......@@ -75,6 +75,11 @@ output_file_directive ((FILE), main_input_filename)
#define ASM_OUTPUT_ALIGN(FILE,LOG) \
fprintf (FILE, "\t.align %d\n", 1 << (LOG))
/* The Encore assembler doesn't seem to accept this syntax. */
#undef ASM_OUTPUT_ALIGN_CODE
#define ASM_OUTPUT_ALIGN_CODE(FILE) \
fprintf (FILE, "\t.align 2\n")
/*
* 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