* config/tc-mips.c (md_section_align): Check ELF-ness at runtime.
authorThiemo Seufer <ths@networkno.de>
Tue, 1 Aug 2006 07:58:22 +0000 (07:58 +0000)
committerThiemo Seufer <ths@networkno.de>
Tue, 1 Aug 2006 07:58:22 +0000 (07:58 +0000)
gas/ChangeLog
gas/config/tc-mips.c

index 959a9e6..c6ae3ed 100644 (file)
@@ -1,5 +1,9 @@
 2006-08-01  Thiemo Seufer  <ths@mips.com>
 
+       * config/tc-mips.c (md_section_align): Check ELF-ness at runtime.
+
+2006-08-01  Thiemo Seufer  <ths@mips.com>
+
        * config/tc-mips.c (macro_build_lui): Fix comment formatting.
        (md_apply_fix): Likewise. Unify handling of BFD_RELOC_RVA,
        BFD_RELOC_32 and BFD_RELOC_16.
index e28d079..e891454 100644 (file)
@@ -13042,16 +13042,17 @@ md_section_align (asection *seg, valueT addr)
 {
   int align = bfd_get_section_alignment (stdoutput, seg);
 
-#ifdef OBJ_ELF
-  /* We don't need to align ELF sections to the full alignment.
-     However, Irix 5 may prefer that we align them at least to a 16
-     byte boundary.  We don't bother to align the sections if we are
-     targeted for an embedded system.  */
-  if (strcmp (TARGET_OS, "elf") == 0)
-    return addr;
-  if (align > 4)
-    align = 4;
-#endif
+  if (IS_ELF)
+    {
+      /* We don't need to align ELF sections to the full alignment.
+        However, Irix 5 may prefer that we align them at least to a 16
+        byte boundary.  We don't bother to align the sections if we
+        are targeted for an embedded system.  */
+      if (strcmp (TARGET_OS, "elf") == 0)
+        return addr;
+      if (align > 4)
+        align = 4;
+    }
 
   return ((addr + (1 << align) - 1) & (-1 << align));
 }