* frags.c (frag_align): Handle absolute_section.

* write.c (record_alignment): Likewise.
This commit is contained in:
Ian Lance Taylor 1995-08-13 21:19:00 +00:00
parent 2e00287afc
commit 5c800455bf
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,11 @@
Sun Aug 13 17:03:58 1995 Ian Lance Taylor <ian@cygnus.com>
* 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

View File

@ -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);