diff options
author | Alan Modra <amodra@gmail.com> | 2000-04-25 10:02:20 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-04-25 10:02:20 +0000 |
commit | e799a695210a55d1ed2a11b85a33a2523aa974e4 (patch) | |
tree | dc35ed436ae9255159ab2ead614f7d73c0aef51f /gas | |
parent | bfa8561f01cf5dcfe9e2d6110c37da70b1ac19c4 (diff) | |
download | gdb-e799a695210a55d1ed2a11b85a33a2523aa974e4.zip gdb-e799a695210a55d1ed2a11b85a33a2523aa974e4.tar.gz gdb-e799a695210a55d1ed2a11b85a33a2523aa974e4.tar.bz2 |
Use record_alignment, not bfd_set_section_alignment.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-mips.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index ddf73f1..c8978a5 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -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 diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 5daf89d..bb7e227 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -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; |