Use record_alignment, not bfd_set_section_alignment.

This commit is contained in:
Alan Modra 2000-04-25 10:02:20 +00:00
parent bfa8561f01
commit e799a69521
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2000-04-25 Machida Hiroyuki <machida@sm.sony.co.jp>
* config/tc-mips.c (s_change_sec): Use record_alignment, not
bfd_set_section_alignment.
2000-04-25 Alan Modra <alan@linuxcare.com.au>
* config/tc-i386.c (offset_in_range): Ensure shift counts are less

View File

@ -10045,7 +10045,7 @@ s_change_sec (sec)
| SEC_RELOC
| SEC_DATA));
if (strcmp (TARGET_OS, "elf") != 0)
bfd_set_section_alignment (stdoutput, seg, 4);
record_alignment (seg, 4);
}
demand_empty_rest_of_line ();
}
@ -10067,7 +10067,7 @@ s_change_sec (sec)
SEC_ALLOC | SEC_LOAD | SEC_RELOC
| SEC_DATA);
if (strcmp (TARGET_OS, "elf") != 0)
bfd_set_section_alignment (stdoutput, seg, 4);
record_alignment (seg, 4);
}
demand_empty_rest_of_line ();
break;