aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1993-08-13 18:59:37 +0000
committerRichard Stallman <rms@gnu.org>1993-08-13 18:59:37 +0000
commit5c23d95b4f02b7b9b8217a40ee722fbcdee1ca7a (patch)
tree2e87968015d8bab672f9cf99e87386c966fa4625 /gcc
parentaabe87cd7ec7b980fa1b3ef522c73731d6393b6e (diff)
downloadgcc-5c23d95b4f02b7b9b8217a40ee722fbcdee1ca7a.zip
gcc-5c23d95b4f02b7b9b8217a40ee722fbcdee1ca7a.tar.gz
gcc-5c23d95b4f02b7b9b8217a40ee722fbcdee1ca7a.tar.bz2
(ASM_OUTPUT_ALIGN_CODE): Override to avoid generating a second argument.
From-SVN: r5156
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/ns32k/encore.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/config/ns32k/encore.h b/gcc/config/ns32k/encore.h
index 7ceaffb..a2342a4 100644
--- a/gcc/config/ns32k/encore.h
+++ b/gcc/config/ns32k/encore.h
@@ -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.
*/