diff options
author | Catherine Moore <clm@cygnus.com> | 1998-12-07 09:15:34 +0000 |
---|---|---|
committer | Catherine Moore <clm@gcc.gnu.org> | 1998-12-07 04:15:34 -0500 |
commit | e6592fffc4ca720e306362c20c595dfe540f4696 (patch) | |
tree | 647a3224da3c3ff837edeb41b4a36aebefb53a67 /gcc/config/arm/elf.h | |
parent | 1a953d0f164569382e9f6704aa0a7f6f2bdc5579 (diff) | |
download | gcc-e6592fffc4ca720e306362c20c595dfe540f4696.zip gcc-e6592fffc4ca720e306362c20c595dfe540f4696.tar.gz gcc-e6592fffc4ca720e306362c20c595dfe540f4696.tar.bz2 |
configure.in: (arm*-*-ecos-elf): New target.
Mon Dec 7 09:58:26 1998 Catherine Moore <clm@cygnus.com>
* configure.in: (arm*-*-ecos-elf): New target.
* configure: Regenerated.
* config/arm/elf.h (ASM_WEAKEN_LABEL): Define.
* config/arm/ecos-elf.h: New file.
* config/arm/unknown-elf.h (TARGET_VERSION): Check
for redefinition.
From-SVN: r24145
Diffstat (limited to 'gcc/config/arm/elf.h')
-rw-r--r-- | gcc/config/arm/elf.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/config/arm/elf.h b/gcc/config/arm/elf.h index a8aaf76..28af933 100644 --- a/gcc/config/arm/elf.h +++ b/gcc/config/arm/elf.h @@ -325,6 +325,12 @@ do { \ } while (0) #endif +/* This is how we tell the assembler that a symbol is weak. */ + +#define ASM_WEAKEN_LABEL(FILE,NAME) \ + do { fputs ("\t.weak\t", FILE); assemble_name (FILE, NAME); \ + fputc ('\n', FILE); } while (0) + #include "arm/aout.h" |