* write.c (subsegs_finish): Don't specially align last subseg.
[deliverable/binutils-gdb.git] / gas / subsegs.c
index 611d64c4f53986a7531f28053d27490319c4ec4d..c8159531ef3355c11a62aff4b7b605e7f8689b35 100644 (file)
@@ -374,7 +374,7 @@ subseg_new (segname, subseg)
     return new_seg;
   }
 #else
-  as_bad (_("Attempt to switch to nonexistent segment \"%s\""), segname);
+  as_bad (_("attempt to switch to nonexistent segment \"%s\""), segname);
   return now_seg;
 #endif
 }
@@ -587,7 +587,7 @@ subseg_text_p (sec)
 #else /* ! BFD_ASSEMBLER */
   const char * const *p;
 
-  if (sec == data_section || sec == bss_section)
+  if (sec == data_section || sec == bss_section || sec == absolute_section)
     return 0;
 
   for (p = nontext_section_names; *p != NULL; ++p)
This page took 0.024406 seconds and 4 git commands to generate.