diff options
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/elfnn-riscv.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 56c3feb..4a4167c 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2018-02-06 Jim Wilson <jimw@sifive.com> + + * elfnn-riscv.c (riscv_elf_relocate_section): Return TRUE if used + callback to report an error. + 2018-02-06 Eric Botcazou <ebotcazou@adacore.com> PR ld/22263 diff --git a/bfd/elfnn-riscv.c b/bfd/elfnn-riscv.c index 3524fed..a37f4aa 100644 --- a/bfd/elfnn-riscv.c +++ b/bfd/elfnn-riscv.c @@ -2253,6 +2253,7 @@ riscv_elf_relocate_section (bfd *output_bfd, if (msg) info->callbacks->warning (info, msg, name, input_bfd, input_section, rel->r_offset); + ret = TRUE; goto out; } |