* defaults.h (ASM_OUTPUT_WEAK_ALIAS): Check for ASM_WEAKEN_LABEL.
From-SVN: r44131
This commit is contained in:
parent
06c271c3cf
commit
20c93f7ce2
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2001-07-18 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||
|
||||
* defaults.h (ASM_OUTPUT_WEAK_ALIAS): Check for ASM_WEAKEN_LABEL.
|
||||
|
||||
Wed Jul 18 20:47:36 CEST 2001 Jan Hubicka <jh@suse.cz>
|
||||
|
||||
* cse.c: Undo my previous patch.
|
||||
|
|
|
@ -143,7 +143,8 @@ do { ASM_OUTPUT_LABEL(FILE,LABEL_ALTERNATE_NAME (INSN)); } while (0)
|
|||
#endif
|
||||
|
||||
/* This is how we tell the assembler that a symbol is weak. */
|
||||
#if !defined (ASM_OUTPUT_WEAK_ALIAS) && defined (ASM_OUTPUT_DEF)
|
||||
#ifndef ASM_OUTPUT_WEAK_ALIAS
|
||||
#if defined (ASM_WEAKEN_LABEL) && defined (ASM_OUTPUT_DEF)
|
||||
#define ASM_OUTPUT_WEAK_ALIAS(STREAM, NAME, VALUE) \
|
||||
do \
|
||||
{ \
|
||||
|
@ -153,6 +154,7 @@ do { ASM_OUTPUT_LABEL(FILE,LABEL_ALTERNATE_NAME (INSN)); } while (0)
|
|||
} \
|
||||
while (0)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* This determines whether or not we support weak symbols. */
|
||||
#ifndef SUPPORTS_WEAK
|
||||
|
|
Loading…
Add table
Reference in a new issue