OSDN Git Service

Use record_alignment, not bfd_set_section_alignment.
authorAlan Modra <amodra@bigpond.net.au>
Tue, 25 Apr 2000 10:02:20 +0000 (10:02 +0000)
committerAlan Modra <amodra@bigpond.net.au>
Tue, 25 Apr 2000 10:02:20 +0000 (10:02 +0000)
gas/ChangeLog
gas/config/tc-mips.c

index ddf73f1..c8978a5 100644 (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
index 5daf89d..bb7e227 100644 (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;