summaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2017-11-29 09:32:49 +0000
committerNick Clifton <nickc@redhat.com>2017-11-29 09:32:49 +0000
commited9c7ee03780b8d5acf091091ded29cd40df8254 (patch)
tree6bc83a2a0b19d5557be0929177df3aa898f4b307 /gas
parent5dc824ed42cd173c1525f5abc76f4091f11a4dbc (diff)
Use the record_alignment function when creating a .note section, in case the user has already created the section.
PR 22492 * config/obj-elf.c (obj_elf_version): Use record_alignment rather than bfd_set_section_alignment.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog7
-rw-r--r--gas/config/obj-elf.c2
2 files changed, 7 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index e54872d286..d59423d393 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,8 +1,13 @@
+2017-11-29 Nick Clifton <nickc@redhat.com>
+
+ PR 22492
+ * config/obj-elf.c (obj_elf_version): Use record_alignment rather
+ than bfd_set_section_alignment.
+
2017-11-27 Andrew Waterman <andrew@sifive.com>
Palmer Dabbelt <palmer@sifive.com>
Jim Wilson <jimw@sifive.com>
- gas/
* config/tc-riscv.c (riscv_handle_implicit_zero_offset): New.
(riscv_ip): Cases 'k', 'l', 'm', 'n', 'M', 'N', add call to
riscv_handle_implicit_zero_offset. At label load_store, replace
diff --git a/gas/config/obj-elf.c b/gas/config/obj-elf.c
index 2d1d1679b8..61c573a5e4 100644
--- a/gas/config/obj-elf.c
+++ b/gas/config/obj-elf.c
@@ -1829,7 +1829,7 @@ obj_elf_version (int ignore ATTRIBUTE_UNUSED)
bfd_set_section_flags (stdoutput,
note_secp,
SEC_HAS_CONTENTS | SEC_READONLY);
- bfd_set_section_alignment (stdoutput, note_secp, 2);
+ record_alignment (note_secp, 2);
/* Process the version string. */
len = strlen (name) + 1;