Rename bfd_link_hash_entry field "next" -> "und_next".
This commit is contained in:
parent
c488125f39
commit
d47640a3d5
|
@ -1,3 +1,7 @@
|
|||
2003-12-03 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* bfdlink.h (struct bfd_link_hash_entry): Rename "next" to "und_next".
|
||||
|
||||
2003-12-02 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* bfdlink.h (struct bfd_link_info): Remove mpc860c0 field.
|
||||
|
|
|
@ -81,6 +81,7 @@ struct bfd_link_hash_entry
|
|||
{
|
||||
/* Base hash table entry structure. */
|
||||
struct bfd_hash_entry root;
|
||||
|
||||
/* Type of this entry. */
|
||||
enum bfd_link_hash_type type;
|
||||
|
||||
|
@ -102,7 +103,8 @@ struct bfd_link_hash_entry
|
|||
symbol is undefined and becomes defined, this field will
|
||||
automatically be non-NULL since the symbol will have been on the
|
||||
undefined symbol list. */
|
||||
struct bfd_link_hash_entry *next;
|
||||
struct bfd_link_hash_entry *und_next;
|
||||
|
||||
/* A union of information depending upon the type. */
|
||||
union
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue