diff options
author | Richard Stallman <rms@gnu.org> | 1993-08-13 18:59:37 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-08-13 18:59:37 +0000 |
commit | 5c23d95b4f02b7b9b8217a40ee722fbcdee1ca7a (patch) | |
tree | 2e87968015d8bab672f9cf99e87386c966fa4625 /gcc | |
parent | aabe87cd7ec7b980fa1b3ef522c73731d6393b6e (diff) | |
download | gcc-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.h | 5 |
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. */ |