RISC-V: Fix "withand" in LEB128 error messages

This was split over multiple lines and ended up missing a space.

Reported-by: David Abdurachmanov <davidlt@rivosinc.com>
Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
This commit is contained in:
Palmer Dabbelt
2023-12-06 09:52:31 -08:00
committed by Nelson Chu
parent fce5866a1c
commit d86cb16645
+2 -2
View File
@@ -2521,7 +2521,7 @@ riscv_elf_relocate_section (bfd *output_bfd,
else
{
msg = ("Mismatched R_RISCV_SET_ULEB128, it must be paired with"
"and applied before R_RISCV_SUB_ULEB128");
" and applied before R_RISCV_SUB_ULEB128");
r = bfd_reloc_dangerous;
}
break;
@@ -2537,7 +2537,7 @@ riscv_elf_relocate_section (bfd *output_bfd,
else
{
msg = ("Mismatched R_RISCV_SUB_ULEB128, it must be paired with"
"and applied after R_RISCV_SET_ULEB128");
" and applied after R_RISCV_SET_ULEB128");
r = bfd_reloc_dangerous;
}
break;