diff options
author | Richard Stallman <rms@gnu.org> | 1993-08-13 21:09:57 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-08-13 21:09:57 +0000 |
commit | 8e90a239ee2967869df52c67bd952896dd70ecaf (patch) | |
tree | 547c29c27eb004a57193c8b86b04472f975667fa /gcc | |
parent | e5ec2eb8787ad72e2b1b620822603b79d1702774 (diff) | |
download | gcc-8e90a239ee2967869df52c67bd952896dd70ecaf.zip gcc-8e90a239ee2967869df52c67bd952896dd70ecaf.tar.gz gcc-8e90a239ee2967869df52c67bd952896dd70ecaf.tar.bz2 |
(ASM_OUTPUT_ALIGN_CODE): Override as no-op.
From-SVN: r5158
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/ns32k/encore.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/config/ns32k/encore.h b/gcc/config/ns32k/encore.h index b76c06b..02bc67f 100644 --- a/gcc/config/ns32k/encore.h +++ b/gcc/config/ns32k/encore.h @@ -75,10 +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 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 -#define ASM_OUTPUT_ALIGN_CODE(FILE) \ - fprintf (FILE, "\t.align 2\n") +#define ASM_OUTPUT_ALIGN_CODE(FILE) /* * Internal labels are prefixed with a period. |