mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-26 05:47:26 +08:00
* config/tc-mmix.c (md_estimate_size_before_relax): Don't consider
a weak symbol in same section to be within reach.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2002-03-14 Hans-Peter Nilsson <hp@bitrange.com>
|
||||||
|
|
||||||
|
* config/tc-mmix.c (md_estimate_size_before_relax): Don't consider
|
||||||
|
a weak symbol in same section to be within reach.
|
||||||
|
|
||||||
2002-03-13 Nick Clifton <nickc@cambridge.redhat.com>
|
2002-03-13 Nick Clifton <nickc@cambridge.redhat.com>
|
||||||
|
|
||||||
* po/fr.po: Updated version.
|
* po/fr.po: Updated version.
|
||||||
|
@ -2172,7 +2172,8 @@ md_estimate_size_before_relax (fragP, segment)
|
|||||||
#define HANDLE_RELAXABLE(state) \
|
#define HANDLE_RELAXABLE(state) \
|
||||||
case ENCODE_RELAX (state, STATE_UNDF): \
|
case ENCODE_RELAX (state, STATE_UNDF): \
|
||||||
if (fragP->fr_symbol != NULL \
|
if (fragP->fr_symbol != NULL \
|
||||||
&& S_GET_SEGMENT (fragP->fr_symbol) == segment) \
|
&& S_GET_SEGMENT (fragP->fr_symbol) == segment \
|
||||||
|
&& !S_IS_WEAK (fragP->fr_symbol)) \
|
||||||
{ \
|
{ \
|
||||||
/* The symbol lies in the same segment - a relaxable case. */ \
|
/* The symbol lies in the same segment - a relaxable case. */ \
|
||||||
fragP->fr_subtype \
|
fragP->fr_subtype \
|
||||||
|
Reference in New Issue
Block a user