From: Ian Lance Taylor Date: Sun, 13 Aug 1995 21:19:00 +0000 (+0000) Subject: * frags.c (frag_align): Handle absolute_section. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5c800455bf7f27ad0e11e896f4bf44eeff29c829;p=binutils-gdb.git * frags.c (frag_align): Handle absolute_section. * write.c (record_alignment): Likewise. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index f43e84c4d3c..29d68e2c5e2 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,11 @@ +Sun Aug 13 17:03:58 1995 Ian Lance Taylor + + * frags.c (frag_align): Handle absolute_section. + * write.c (record_alignment): Likewise. + + * config/tc-mips.c (macro_build): Skip insns with an inappropriate + ISA level. + Sun Aug 13 00:35:02 1995 Jeff Law (law@snake.cs.utah.edu) * config/tc-hppa.c (md_pseudo_table): Add entries for diff --git a/gas/write.c b/gas/write.c index 11910798382..ed6f0cb171d 100644 --- a/gas/write.c +++ b/gas/write.c @@ -305,6 +305,8 @@ record_alignment (seg, align) boundary, etc.) */ int align; { + if (seg == absolute_section) + return; #ifdef BFD_ASSEMBLER if (align > bfd_get_section_alignment (stdoutput, seg)) bfd_set_section_alignment (stdoutput, seg, align);