diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2000-10-09 15:09:17 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2000-10-09 15:09:17 +0000 |
commit | 89cdebba1358d2b68fe98449be80bbc3338ebda5 (patch) | |
tree | ab36519239c28a9b19b9616798955e431ec73580 /ld/ldcref.c | |
parent | 86b1cc60c0f0ab09253cc6f6554d402fa13e52e6 (diff) | |
download | gdb-89cdebba1358d2b68fe98449be80bbc3338ebda5.zip gdb-89cdebba1358d2b68fe98449be80bbc3338ebda5.tar.gz gdb-89cdebba1358d2b68fe98449be80bbc3338ebda5.tar.bz2 |
2000-10-09 Kazu Hirata <kazu@hxi.com>
* ldcref.c: Fix formatting.
* ldctor.h: Likewise.
* ldemul.c: Likewise.
* ldemul.h: Likewise.
* ldexp.c: Likewise.
* ldexp.h: Likewise.
* ldfile.c: Likewise.
* ldfile.h: Likewise.
* ld.h: Likewise.
* ldlang.c: Likewise.
* ldlang.h: Likewise.
* ldmain.c: Likewise.
Diffstat (limited to 'ld/ldcref.c')
-rw-r--r-- | ld/ldcref.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/ld/ldcref.c b/ld/ldcref.c index f7751e3..cb2a00f 100644 --- a/ld/ldcref.c +++ b/ld/ldcref.c @@ -36,8 +36,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* We keep an instance of this structure for each reference to a symbol from a given object. */ -struct cref_ref -{ +struct cref_ref { /* The next reference. */ struct cref_ref *next; /* The object. */ @@ -52,8 +51,7 @@ struct cref_ref /* We keep a hash table of symbols. Each entry looks like this. */ -struct cref_hash_entry -{ +struct cref_hash_entry { struct bfd_hash_entry root; /* The demangled name. */ char *demangled; @@ -63,8 +61,7 @@ struct cref_hash_entry /* This is what the hash table looks like. */ -struct cref_hash_table -{ +struct cref_hash_table { struct bfd_hash_table root; }; @@ -389,8 +386,7 @@ check_nocrossref (h, ignore) /* The struct is used to pass information from check_refs to check_reloc_refs through bfd_map_over_sections. */ -struct check_refs_info -{ +struct check_refs_info { struct cref_hash_entry *h; asection *defsec; struct lang_nocrossrefs *ncrs; |