diff options
author | Alan Modra <amodra@gmail.com> | 2003-12-02 23:00:00 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2003-12-02 23:00:00 +0000 |
commit | 6ad841a1833e6b301a53835c4d803ab47c801f15 (patch) | |
tree | 9d68b4ff3109ecad9454523a87781a19fbcc1e59 /include | |
parent | f6246aba72a56abc79a4176baad7f88fd12e562f (diff) | |
download | gdb-6ad841a1833e6b301a53835c4d803ab47c801f15.zip gdb-6ad841a1833e6b301a53835c4d803ab47c801f15.tar.gz gdb-6ad841a1833e6b301a53835c4d803ab47c801f15.tar.bz2 |
Rename bfd_link_hash_entry field "next" -> "und_next".
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/bfdlink.h | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index f710f85..d7c752b 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -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. diff --git a/include/bfdlink.h b/include/bfdlink.h index 51bbd5e..f31046d 100644 --- a/include/bfdlink.h +++ b/include/bfdlink.h @@ -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 { |