mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 10:35:12 +08:00
Use record_alignment, not bfd_set_section_alignment.
This commit is contained in:
parent
bfa8561f01
commit
e799a69521
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user