Index: doc/ChangeLog
[deliverable/binutils-gdb.git] / bfd / hp300hpux.c
index d4eb3aad1e31afb7142b49f0dcf56e85bf873247..df93d6d6d35ec5a5eb685b451058d3f9646f0586 100644 (file)
@@ -93,7 +93,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
        slurp_symbol_table
        swap_std_reloc_in
        slurp_reloc_table
-       get_symtab
+       canonicalize_symtab
        get_symtab_upper_bound
        canonicalize_reloc
        mkobject
@@ -129,7 +129,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 /* these don't use MY because that causes problems within JUMP_TABLE
    (CONCAT2 winds up being expanded recursively, which ANSI C compilers
    will not do).  */
-#define MY_get_symtab hp300hpux_get_symtab
+#define MY_canonicalize_symtab hp300hpux_canonicalize_symtab
 #define MY_get_symtab_upper_bound hp300hpux_get_symtab_upper_bound
 #define MY_canonicalize_reloc hp300hpux_canonicalize_reloc
 #define MY_write_object_contents hp300hpux_write_object_contents
@@ -208,7 +208,7 @@ void MY (swap_std_reloc_in)
           bfd_size_type));
 bfd_boolean MY (slurp_reloc_table)
   PARAMS ((bfd *, sec_ptr, asymbol **));
-long MY (get_symtab)
+long MY (canonicalize_symtab)
   PARAMS ((bfd *, asymbol **));
 long MY (get_symtab_upper_bound)
   PARAMS ((bfd *));
@@ -802,7 +802,7 @@ doit:
 /* call aout_32 versions if the input file was generated by gcc         */
 /************************************************************************/
 
-long aout_32_get_symtab
+long aout_32_canonicalize_symtab
   PARAMS ((bfd * abfd, asymbol ** location));
 long aout_32_get_symtab_upper_bound
   PARAMS ((bfd * abfd));
@@ -811,7 +811,7 @@ long aout_32_canonicalize_reloc
           asymbol ** symbols));
 
 long
-MY (get_symtab) (abfd, location)
+MY (canonicalize_symtab) (abfd, location)
      bfd *abfd;
      asymbol **location;
 {
@@ -819,7 +819,7 @@ MY (get_symtab) (abfd, location)
   aout_symbol_type *symbase;
 
   if (obj_aout_subformat (abfd) == gnu_encap_format)
-    return aout_32_get_symtab (abfd, location);
+    return aout_32_canonicalize_symtab (abfd, location);
 
   if (!MY (slurp_symbol_table) (abfd))
     return -1;
This page took 0.023576 seconds and 4 git commands to generate.