]> Git Repo - binutils.git/commitdiff
Use record_alignment, not bfd_set_section_alignment.
authorAlan Modra <[email protected]>
Tue, 25 Apr 2000 10:02:20 +0000 (10:02 +0000)
committerAlan Modra <[email protected]>
Tue, 25 Apr 2000 10:02:20 +0000 (10:02 +0000)
gas/ChangeLog
gas/config/tc-mips.c

index ddf73f1a990bb3e284408e949a68110d9b635536..c8978a5acad73a1a3d2cbf19b322da8f1100b1d0 100644 (file)
@@ -1,3 +1,8 @@
+2000-04-25  Machida Hiroyuki  <[email protected]>
+
+       * config/tc-mips.c (s_change_sec): Use record_alignment, not 
+       bfd_set_section_alignment.
+
 2000-04-25  Alan Modra  <[email protected]>
 
        * config/tc-i386.c (offset_in_range): Ensure shift counts are less
index 5daf89d394f3d96099f39ae896d90023724667bc..bb7e22756ec33159b5ef9742b15036efe8a8f49a 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;
This page took 0.070699 seconds and 4 git commands to generate.