Use <= in ecoff_frob_symbol, not <.
authorIan Lance Taylor <ian@airs.com>
Tue, 25 Jan 1994 18:52:01 +0000 (18:52 +0000)
committerIan Lance Taylor <ian@airs.com>
Tue, 25 Jan 1994 18:52:01 +0000 (18:52 +0000)
gas/ecoff.c

index fd697b4..27890fa 100644 (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;