diff options
author | Alan Modra <amodra@gmail.com> | 2022-06-08 14:33:17 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2022-06-08 16:40:01 +0930 |
commit | 47be149aca50ce421d2f4be5586aeb8ff45caa97 (patch) | |
tree | b160a6edc58b2801b7f4302544ac8476175640e1 /bfd | |
parent | 24d34d81eacbce13854d99f390240e6ad63d38a6 (diff) | |
download | fsf-binutils-gdb-47be149aca50ce421d2f4be5586aeb8ff45caa97.zip fsf-binutils-gdb-47be149aca50ce421d2f4be5586aeb8ff45caa97.tar.gz fsf-binutils-gdb-47be149aca50ce421d2f4be5586aeb8ff45caa97.tar.bz2 |
elf64-nfp reloc fix
These are all dummy howtos, there is no reason one of them should
have partial_inplace true.
* elf64-nfp.c (elf_nfp_howto_table <R_NFP_IMMED_LO16_I_B>): Don't
set partial_inplace.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/elf64-nfp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elf64-nfp.c b/bfd/elf64-nfp.c index fd471b5..167f979 100644 --- a/bfd/elf64-nfp.c +++ b/bfd/elf64-nfp.c @@ -82,7 +82,7 @@ static reloc_howto_type elf_nfp_howto_table[] = HOWTO (R_NFP_IMMED_LO16_I_B, 0, 3, 0, false, 0, complain_overflow_dont, elf64_nfp_reloc, "R_NFP_IMMED_LO16_I_B", - true, 0, 0, false), + false, 0, 0, false), HOWTO (R_NFP_SRC7_B, 0, 3, 0, false, 0, complain_overflow_dont, elf64_nfp_reloc, "R_NFP_SRC7_B", |