* 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.
This commit is contained in:
Ian Lance Taylor 1994-03-16 22:22:17 +00:00
parent 23dc1ae33d
commit d6e6bc1c52
2 changed files with 6 additions and 2 deletions

View 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

View 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;