Commit 20c93f7c by Rainer Orth Committed by Rainer Orth

* defaults.h (ASM_OUTPUT_WEAK_ALIAS): Check for ASM_WEAKEN_LABEL.

From-SVN: r44131
parent 06c271c3
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> Wed Jul 18 20:47:36 CEST 2001 Jan Hubicka <jh@suse.cz>
* cse.c: Undo my previous patch. * cse.c: Undo my previous patch.
......
...@@ -143,7 +143,8 @@ do { ASM_OUTPUT_LABEL(FILE,LABEL_ALTERNATE_NAME (INSN)); } while (0) ...@@ -143,7 +143,8 @@ do { ASM_OUTPUT_LABEL(FILE,LABEL_ALTERNATE_NAME (INSN)); } while (0)
#endif #endif
/* This is how we tell the assembler that a symbol is weak. */ /* 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) \ #define ASM_OUTPUT_WEAK_ALIAS(STREAM, NAME, VALUE) \
do \ do \
{ \ { \
...@@ -153,6 +154,7 @@ do { ASM_OUTPUT_LABEL(FILE,LABEL_ALTERNATE_NAME (INSN)); } while (0) ...@@ -153,6 +154,7 @@ do { ASM_OUTPUT_LABEL(FILE,LABEL_ALTERNATE_NAME (INSN)); } while (0)
} \ } \
while (0) while (0)
#endif #endif
#endif
/* This determines whether or not we support weak symbols. */ /* This determines whether or not we support weak symbols. */
#ifndef SUPPORTS_WEAK #ifndef SUPPORTS_WEAK
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment