From ed9c7ee03780b8d5acf091091ded29cd40df8254 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Wed, 29 Nov 2017 09:32:49 +0000 Subject: 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. --- gas/config/obj-elf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gas/config/obj-elf.c') diff --git a/gas/config/obj-elf.c b/gas/config/obj-elf.c index 2d1d167..61c573a 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; -- cgit v1.1