Do not align sectins when producing ELF format objects.
authorNick Clifton <nickc@redhat.com>
Wed, 1 Sep 1999 10:57:19 +0000 (10:57 +0000)
committerNick Clifton <nickc@redhat.com>
Wed, 1 Sep 1999 10:57:19 +0000 (10:57 +0000)
gas/ChangeLog
gas/config/tc-arm.c

index fd3962eaacb2f9d505cb27e508a129a52e8b0029..7c068c7c641c25036d81516675af20571e6b84cb 100644 (file)
@@ -1,5 +1,8 @@
 1999-09-01  Nick Clifton  <nickc@cygnus.com>
 
+       * config/tc-arm.c (md_section_align): Do not align sections in ELF
+       format. 
+
        * as.c (show_usage): Add --gdwarf2 to list of options displayed.
        * as.texinfo: Document --gdwarf2 command line option.
        Add additional documentation of ARM command line switches.
index ae4b629539390b343fef8fc7f706466201c07471..92b38564548e8eec92c494821dd3cf1df2ddad6c 100644 (file)
@@ -5181,9 +5181,7 @@ md_section_align (segment, size)
      valueT size;
 {
 #ifdef OBJ_ELF
-  /* Don't align the dwarf2 debug sections */
-  if (!strncmp (segment->name, ".debug", 5))
-    return size;
+  return size;
 #endif
   /* Round all sects to multiple of 4 */
   return (size + 3) & ~3;
This page took 0.029969 seconds and 4 git commands to generate.