* config/obj-coffbfd.c (adjust_stab_section): Initialize
authorIan Lance Taylor <ian@airs.com>
Wed, 16 Mar 1994 22:22:17 +0000 (22:22 +0000)
committerIan Lance Taylor <ian@airs.com>
Wed, 16 Mar 1994 22:22:17 +0000 (22:22 +0000)
stabstrseg to SEG_UNKNOWN, not -1.  After loop, check whether it
is not SEG_UNKNOWN rather than checking whether it is >= 0.

gas/ChangeLog
gas/config/obj-coffbfd.c

index 40415e243aa78695a357426c14300a733975c449..9c5d0819886cac59fac53651b37dcefdf5c2f6ae 100644 (file)
@@ -1,5 +1,9 @@
 Wed Mar 16 17:11:37 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
 
+       * config/obj-coffbfd.c (adjust_stab_section): Initialize
+       stabstrseg to SEG_UNKNOWN, not -1.  After loop, check whether it
+       is not SEG_UNKNOWN rather than checking whether it is >= 0.
+
        * config/tc-mips.c (mips_align): Take new argument, label, and use
        it instead of global insn_label.
        (s_align, s_cons, s_float_cons, s_gpword): Save insn_label before
index 494de2276bd061ab03b224cab62f2a054f68d6d9..b09368ca1c39e10e043014acf4e86495b03a9429 100644 (file)
@@ -2680,7 +2680,7 @@ adjust_stab_section(abfd, seg)
      bfd *abfd;
      segT seg;
 {
-  segT stabstrseg = -1;
+  segT stabstrseg = SEG_UNKNOWN;
   char *secname, *name, *name2;
   char *p = NULL;
   int i, strsz = 0, nsyms;
@@ -2704,7 +2704,7 @@ adjust_stab_section(abfd, seg)
     }
 
   /* If we found the section, get its size. */
-  if (stabstrseg >= 0)
+  if (stabstrseg != SEG_UNKNOWN)
     strsz = size_section (abfd, stabstrseg);
 
   nsyms = size_section (abfd, seg) / 12 - 1;