* 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:
parent
23dc1ae33d
commit
d6e6bc1c52
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user