warning fix
This commit is contained in:
parent
747f3d1889
commit
f08c429c32
@ -1,3 +1,7 @@
|
|||||||
|
2007-07-25 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
|
* linker.c (generic_link_add_symbol_list): Warning fix.
|
||||||
|
|
||||||
2007-07-24 Michael Snyder <msnyder@access-company.com>
|
2007-07-24 Michael Snyder <msnyder@access-company.com>
|
||||||
|
|
||||||
* opncls.c (bfd_make_writable): Check return from bfd_malloc.
|
* opncls.c (bfd_make_writable): Check return from bfd_malloc.
|
||||||
|
@ -1316,7 +1316,7 @@ generic_link_add_symbol_list (bfd *abfd,
|
|||||||
struct generic_link_hash_entry *h;
|
struct generic_link_hash_entry *h;
|
||||||
struct bfd_link_hash_entry *bh;
|
struct bfd_link_hash_entry *bh;
|
||||||
|
|
||||||
name = bfd_asymbol_name (p);
|
string = name = bfd_asymbol_name (p);
|
||||||
if (((p->flags & BSF_INDIRECT) != 0
|
if (((p->flags & BSF_INDIRECT) != 0
|
||||||
|| bfd_is_ind_section (p->section))
|
|| bfd_is_ind_section (p->section))
|
||||||
&& pp + 1 < ppend)
|
&& pp + 1 < ppend)
|
||||||
@ -1329,12 +1329,9 @@ generic_link_add_symbol_list (bfd *abfd,
|
|||||||
{
|
{
|
||||||
/* The name of P is actually the warning string, and the
|
/* The name of P is actually the warning string, and the
|
||||||
next symbol is the one to warn about. */
|
next symbol is the one to warn about. */
|
||||||
string = name;
|
|
||||||
pp++;
|
pp++;
|
||||||
name = bfd_asymbol_name (*pp);
|
name = bfd_asymbol_name (*pp);
|
||||||
}
|
}
|
||||||
else
|
|
||||||
string = NULL;
|
|
||||||
|
|
||||||
bh = NULL;
|
bh = NULL;
|
||||||
if (! (_bfd_generic_link_add_one_symbol
|
if (! (_bfd_generic_link_add_one_symbol
|
||||||
|
Loading…
x
Reference in New Issue
Block a user