From: Ian Lance Taylor Date: Tue, 25 Jan 1994 18:52:01 +0000 (+0000) Subject: Use <= in ecoff_frob_symbol, not <. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e4fc9376b2a016308ad3d461e4f545b67801d0fe;p=binutils-gdb.git Use <= in ecoff_frob_symbol, not <. --- diff --git a/gas/ecoff.c b/gas/ecoff.c index fd697b4a815..27890fabd43 100644 --- a/gas/ecoff.c +++ b/gas/ecoff.c @@ -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;