* elf32-xtensa.c (xtensa_elf_dynamic_symbol_p): Renamed to...
authorBob Wilson <bob.wilson@acm.org>
Sat, 3 Feb 2007 06:34:22 +0000 (06:34 +0000)
committerBob Wilson <bob.wilson@acm.org>
Sat, 3 Feb 2007 06:34:22 +0000 (06:34 +0000)
        (elf_xtensa_dynamic_symbol_p): ...this.

bfd/ChangeLog
bfd/elf32-xtensa.c

index 1f3198afbcef9654f78a7b98a5699c85515d7710..7f47fb5531f2cc334f93d77990cc28fb71c6e1fd 100644 (file)
@@ -1,3 +1,8 @@
+2007-02-02  Bob Wilson  <bob.wilson@acm.org>
+
+       * elf32-xtensa.c (xtensa_elf_dynamic_symbol_p): Renamed to...
+       (elf_xtensa_dynamic_symbol_p): ...this.
+
 2007-02-02  Bob Wilson  <bob.wilson@acm.org>
 
        * elf32-xtensa.c (plt_reloc_count): Move into link hash table.
index 97b13b7e8eccc9382a8c69628b91928a2c4bc40f..84b84436788e4c7f038c0bcb7641b5025eeed40d 100644 (file)
@@ -549,7 +549,7 @@ elf_xtensa_link_hash_table_create (bfd *abfd)
 }
 
 static inline bfd_boolean
-xtensa_elf_dynamic_symbol_p (struct elf_link_hash_entry *h,
+elf_xtensa_dynamic_symbol_p (struct elf_link_hash_entry *h,
                             struct bfd_link_info *info)
 {
   /* Check if we should do dynamic things to this symbol.  The
@@ -1236,7 +1236,7 @@ elf_xtensa_fix_refcounts (struct elf_link_hash_entry *h, void *arg)
   if (h->root.type == bfd_link_hash_warning)
     h = (struct elf_link_hash_entry *) h->root.u.i.link;
 
-  if (! xtensa_elf_dynamic_symbol_p (h, info))
+  if (! elf_xtensa_dynamic_symbol_p (h, info))
     elf_xtensa_make_sym_local (info, h);
 
   return TRUE;
@@ -2200,7 +2200,7 @@ elf_xtensa_relocate_section (bfd *output_bfd,
       /* Generate dynamic relocations.  */
       if (elf_hash_table (info)->dynamic_sections_created)
        {
-         bfd_boolean dynamic_symbol = xtensa_elf_dynamic_symbol_p (h, info);
+         bfd_boolean dynamic_symbol = elf_xtensa_dynamic_symbol_p (h, info);
 
          if (dynamic_symbol && is_operand_relocation (r_type))
            {
@@ -8662,7 +8662,7 @@ shrink_dynamic_reloc_sections (struct bfd_link_info *info,
   else
     h = sym_hashes[r_symndx - symtab_hdr->sh_info];
 
-  dynamic_symbol = xtensa_elf_dynamic_symbol_p (h, info);
+  dynamic_symbol = elf_xtensa_dynamic_symbol_p (h, info);
 
   if ((r_type == R_XTENSA_32 || r_type == R_XTENSA_PLT)
       && (input_section->flags & SEC_ALLOC) != 0
This page took 0.03055 seconds and 4 git commands to generate.