diff options
author | merrill <merrill@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-05-16 01:02:59 +0000 |
---|---|---|
committer | merrill <merrill@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-05-16 01:02:59 +0000 |
commit | 9a0ce7db12eff82b3a17ca1040523fd865787f2b (patch) | |
tree | 9d5f3bb804d2bbfb71d3beebd8c3bc2c6f1f2499 /gcc/config/netbsd.h | |
parent | 3a5f6e90259514f8a4c2cdfeb92a6aed600d9617 (diff) | |
download | gcc-9a0ce7db12eff82b3a17ca1040523fd865787f2b.tar.gz |
Update weak symbol support
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9697 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/netbsd.h')
-rw-r--r-- | gcc/config/netbsd.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gcc/config/netbsd.h b/gcc/config/netbsd.h index af4f62ebe91..8c0974ade4d 100644 --- a/gcc/config/netbsd.h +++ b/gcc/config/netbsd.h @@ -82,10 +82,15 @@ #undef TYPE_ASM_OP #undef SIZE_ASM_OP -#undef WEAK_ASM_OP #define TYPE_ASM_OP ".type" #define SIZE_ASM_OP ".size" -#define WEAK_ASM_OP ".weak" + +/* This is how we tell the assembler that a symbol is weak. */ + +#undef ASM_WEAKEN_LABEL +#define ASM_WEAKEN_LABEL(FILE,NAME) \ + do { fputs ("\t.weak\t", FILE); assemble_name (FILE, NAME); \ + fputc ('\n', FILE); } while (0) /* The following macro defines the format used to output the second operand of the .type assembler directive. Different svr4 assemblers |