From e4fc9376b2a016308ad3d461e4f545b67801d0fe Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Tue, 25 Jan 1994 18:52:01 +0000 Subject: [PATCH] Use <= in ecoff_frob_symbol, not <. --- gas/ecoff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gas/ecoff.c b/gas/ecoff.c index fd697b4a81..27890fabd4 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;