* frags.c (frag_align): Handle absolute_section.
* write.c (record_alignment): Likewise.
This commit is contained in:
parent
2e00287afc
commit
5c800455bf
@ -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
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user