mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 18:14:13 +08:00
Skip N_EXCL stabs when procesing N_BINCL stabs.
This commit is contained in:
parent
ee7de3e631
commit
955a76eb5f
@ -1,3 +1,8 @@
|
||||
2003-11-25 Mattias Engdegård <mattias@virtutech.se>
|
||||
|
||||
* stabs.c (_bfd_link_section_stabs): Skip N_EXCL stabs when
|
||||
procesing N_BINCL stabs.
|
||||
|
||||
2003-11-25 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* elf64-ppc.c (ppc_type_of_stub): Disallow stubs other than
|
||||
|
26
bfd/stabs.c
26
bfd/stabs.c
@ -3,21 +3,21 @@
|
||||
Free Software Foundation, Inc.
|
||||
Written by Ian Lance Taylor, Cygnus Support.
|
||||
|
||||
This file is part of BFD, the Binary File Descriptor library.
|
||||
This file is part of BFD, the Binary File Descriptor library.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||
|
||||
/* This file contains support for linking stabs in sections, as used
|
||||
on COFF and ELF. */
|
||||
@ -358,6 +358,8 @@ _bfd_link_section_stabs (abfd, psinfo, stabsec, stabstrsec, psecinfo, pstring_of
|
||||
incl_type = incl_sym[TYPEOFF];
|
||||
if (incl_type == 0)
|
||||
break;
|
||||
else if (incl_type == (int) N_EXCL)
|
||||
continue;
|
||||
else if (incl_type == (int) N_EINCL)
|
||||
{
|
||||
if (nest == 0)
|
||||
|
Loading…
Reference in New Issue
Block a user