OSDN Git Service

2000-07-18 Ulf Carlsson <ulfc@engr.sgi.com>
authorulfc <ulfc>
Tue, 18 Jul 2000 09:45:26 +0000 (09:45 +0000)
committerulfc <ulfc>
Tue, 18 Jul 2000 09:45:26 +0000 (09:45 +0000)
* elf32-mips.c (_bfd_mips_elf_finish_dynamic_symbol): Add
paranthesis in if statement.

bfd/ChangeLog
bfd/elf32-mips.c

index e3422df..90013c5 100644 (file)
@@ -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. 
index f675481..1e9e99b 100644 (file)
@@ -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);