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.
This commit is contained in:
parent
752e419362
commit
70a590636b
1 changed files with 1 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue