Use <= in ecoff_frob_symbol, not <.

This commit is contained in:
Ian Lance Taylor 1994-01-25 18:52:01 +00:00
parent 3bc45b7a1a
commit e4fc9376b2
1 changed files with 1 additions and 1 deletions

View File

@ -3433,7 +3433,7 @@ ecoff_frob_symbol (sym)
S_SET_SEGMENT (sym, undefined_section);
else if (S_IS_COMMON (sym)
&& 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 asymbol scom_symbol;