2000-07-18 Ulf Carlsson <ulfc@engr.sgi.com>
* elf32-mips.c (_bfd_mips_elf_finish_dynamic_symbol): Add paranthesis in if statement.
This commit is contained in:
parent
7f0e3f52b0
commit
31a9bdd961
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2000-07-18 Ulf Carlsson <ulfc@engr.sgi.com>
|
||||
|
||||
* elf32-mips.c (_bfd_mips_elf_finish_dynamic_symbol): Add
|
||||
paranthesis in if statement.
|
||||
|
||||
2000-07-17 Koundinya K <kk@ddeorg.soft.net>
|
||||
|
||||
Enable the support for Traditional MIPS.
|
||||
|
|
|
@ -7099,7 +7099,7 @@ _bfd_mips_elf_create_dynamic_sections (abfd, info)
|
|||
return false;
|
||||
}
|
||||
|
||||
if (IRIX_COMPAT (abfd) == ict_irix5 || IRIX_COMPAT (abfd) == ict_none
|
||||
if ((IRIX_COMPAT (abfd) == ict_irix5 || IRIX_COMPAT (abfd) == ict_none)
|
||||
&& !info->shared
|
||||
&& bfd_get_section_by_name (abfd, ".rld_map") == NULL)
|
||||
{
|
||||
|
@ -8636,7 +8636,8 @@ _bfd_mips_elf_finish_dynamic_symbol (output_bfd, info, h, sym)
|
|||
if (! info->shared)
|
||||
{
|
||||
if (! mips_elf_hash_table (info)->use_rld_obj_head
|
||||
&& strcmp (name, "__rld_map") == 0 || strcmp (name, "__RLD_MAP") == 0)
|
||||
&& (strcmp (name, "__rld_map") == 0
|
||||
|| strcmp (name, "__RLD_MAP") == 0))
|
||||
{
|
||||
asection *s = bfd_get_section_by_name (dynobj, ".rld_map");
|
||||
BFD_ASSERT (s != NULL);
|
||||
|
|
Loading…
Reference in a new issue