From: Nelson Chu Date: Tue, 6 Jul 2021 09:27:22 +0000 (+0800) Subject: RISC-V: Fix the build broken with -Werror. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=70a590636b4fcb0818233c65c92163254140a2fd;p=binutils-gdb.git RISC-V: Fix the build broken with -Werror. ChangeLog: bfd/ * elfnn-riscv.c(riscv_elf_additional_program_headers): Removed the unused variable s. (riscv_elf_modify_segment_map): Added ATTRIBUTE_UNUSED for the unused parameter info. --- diff --git a/bfd/elfnn-riscv.c b/bfd/elfnn-riscv.c index 4db3ca4e4b9..2dfa6351337 100644 --- a/bfd/elfnn-riscv.c +++ b/bfd/elfnn-riscv.c @@ -5164,7 +5164,6 @@ static int riscv_elf_additional_program_headers (bfd *abfd, struct bfd_link_info *info ATTRIBUTE_UNUSED) { - asection *s; int ret = 0; /* See if we need a PT_RISCV_ATTRIBUTES segment. */ @@ -5176,7 +5175,7 @@ riscv_elf_additional_program_headers (bfd *abfd, static bool riscv_elf_modify_segment_map (bfd *abfd, - struct bfd_link_info *info) + struct bfd_link_info *info ATTRIBUTE_UNUSED) { asection *s; struct elf_segment_map *m, **pm;