diff options
author | Richard Stallman <rms@gnu.org> | 1993-10-27 18:05:30 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-10-27 18:05:30 +0000 |
commit | 0736d253b5086ae55c68f7533f25c3986fe7c2fa (patch) | |
tree | 0b93ef5f961f5e89fe8b4f11ed96d55b81b455e6 | |
parent | 48daf828912da144d88b53bacd19b7310b7fe803 (diff) | |
download | gcc-0736d253b5086ae55c68f7533f25c3986fe7c2fa.zip gcc-0736d253b5086ae55c68f7533f25c3986fe7c2fa.tar.gz gcc-0736d253b5086ae55c68f7533f25c3986fe7c2fa.tar.bz2 |
(ASM_OUTPUT_INTERNAL_LABEL): #if 0 deleted, to reenable these.
(ASM_GENERATE_INTERNAL_LABEL)
(ASM_OUTPUT_INTERNAL_LABEL): #if 0 deleted, to reenable these.
(NO_DOT_IN_LABEL): Defined.
From-SVN: r5918
-rw-r--r-- | gcc/config/m68k/amix.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/config/m68k/amix.h b/gcc/config/m68k/amix.h index 2d6cd35..0889248 100644 --- a/gcc/config/m68k/amix.h +++ b/gcc/config/m68k/amix.h @@ -23,6 +23,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* ler@lerami.lerctr.org reports as doesn't accept $. */ #define NO_DOLLAR_IN_LABEL +/* rhealey@aggregate.com says dots are no good either. */ +#define NO_DOT_IN_LABEL /* Alter assembler syntax for fsgldiv and fsglmul. It is highly likely that this is a generic SGS m68k assembler dependency. @@ -126,7 +128,8 @@ do { \ putc ('\n', (FILE)); \ } -#if 0 /* This should be unnecessary as a result of PIC_CASE_VECTOR_ADDRESS. */ +/* The following should be unnecessary as a result of PIC_CASE_VECTOR_ADDRESS. + But rhealey@aggregate.com says they are still needed. */ /* Override these for the sake of an assembler bug: the Amix assembler can't handle .LC0@GOT syntax. This pollutes the final @@ -145,5 +148,3 @@ do { \ asm_fprintf (FILE, "%s%%%d:\n", PREFIX, NUM); \ else \ asm_fprintf (FILE, "%0L%s%d:\n", PREFIX, NUM) - -#endif /* 0 */ |