diff options
author | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-09-14 10:19:30 +0000 |
---|---|---|
committer | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-09-14 10:19:30 +0000 |
commit | a9acd81a68caccd25639017b16f7e596d908bae4 (patch) | |
tree | 67a55c32ca6ec7ae816c669c07683e6f35b787f2 /gcc/config/arm/aout.h | |
parent | 49e08d12ee3cc8ebb6fce3082a4a4fb97e0756fb (diff) | |
download | gcc-a9acd81a68caccd25639017b16f7e596d908bae4.tar.gz |
Rearrange arm/elf header files
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45594 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/arm/aout.h')
-rw-r--r-- | gcc/config/arm/aout.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/config/arm/aout.h b/gcc/config/arm/aout.h index 1acb8b480d0..88dddc110f5 100644 --- a/gcc/config/arm/aout.h +++ b/gcc/config/arm/aout.h @@ -105,7 +105,9 @@ Boston, MA 02111-1307, USA. */ /* Arm Assembler barfs on dollars */ #define DOLLARS_IN_IDENTIFIERS 0 +#ifndef NO_DOLLAR_IN_LABEL #define NO_DOLLAR_IN_LABEL 1 +#endif /* DBX register number for a given compiler register number */ #define DBX_REGISTER_NUMBER(REGNO) (REGNO) @@ -257,10 +259,12 @@ Boston, MA 02111-1307, USA. */ #define ASM_OUTPUT_BYTE(STREAM, VALUE) \ fprintf (STREAM, "\t.byte\t%d\n", VALUE) +#undef ASM_OUTPUT_ASCII #define ASM_OUTPUT_ASCII(STREAM, PTR, LEN) \ output_ascii_pseudo_op (STREAM, (const unsigned char *)(PTR), LEN) /* Output a gap. In fact we fill it with nulls. */ +#undef ASM_OUTPUT_SKIP #define ASM_OUTPUT_SKIP(STREAM, NBYTES) \ fprintf (STREAM, "\t.space\t%d\n", NBYTES) |