mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-01 09:49:43 +08:00
Use <= in ecoff_frob_symbol, not <.
This commit is contained in:
@ -3433,7 +3433,7 @@ ecoff_frob_symbol (sym)
|
|||||||
S_SET_SEGMENT (sym, undefined_section);
|
S_SET_SEGMENT (sym, undefined_section);
|
||||||
else if (S_IS_COMMON (sym)
|
else if (S_IS_COMMON (sym)
|
||||||
&& S_GET_VALUE (sym) > 0
|
&& S_GET_VALUE (sym) > 0
|
||||||
&& S_GET_VALUE (sym) < bfd_get_gp_size (stdoutput))
|
&& S_GET_VALUE (sym) <= bfd_get_gp_size (stdoutput))
|
||||||
{
|
{
|
||||||
static asection scom_section;
|
static asection scom_section;
|
||||||
static asymbol scom_symbol;
|
static asymbol scom_symbol;
|
||||||
|
Reference in New Issue
Block a user