mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-30 00:52:16 +08:00
* config/tc-alpha.c (alpha_fix_adjustable): Don't adjust weak syms.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
Sat Aug 8 15:21:28 1998 Richard Henderson <rth@cygnus.com>
|
||||||
|
|
||||||
|
* config/tc-alpha.c (alpha_fix_adjustable): Don't adjust weak syms.
|
||||||
|
|
||||||
start-sanitize-armelf
|
start-sanitize-armelf
|
||||||
Wed Aug 5 15:54:14 1998 Nick Clifton <nickc@cygnus.com>
|
Wed Aug 5 15:54:14 1998 Nick Clifton <nickc@cygnus.com>
|
||||||
|
|
||||||
|
@ -1341,7 +1341,7 @@ alpha_fix_adjustable (f)
|
|||||||
{
|
{
|
||||||
#ifdef OBJ_ELF
|
#ifdef OBJ_ELF
|
||||||
/* Prevent all adjustments to global symbols */
|
/* Prevent all adjustments to global symbols */
|
||||||
if (S_IS_EXTERN (f->fx_addsy))
|
if (S_IS_EXTERN (f->fx_addsy) || S_IS_WEAK (f->fx_addsy))
|
||||||
return 0;
|
return 0;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user