On Tue, Dec 12, 2023 at 2:40 PM Rui Ueyama wrote: > https://github.com/riscv-non-isa/riscv-elf-psabi-doc/pull/397 has been > merged. > I also completed the copyright assignment form. > > Could you merge this patch? > Sure, Thanks for helping to push this through. On Tue, Dec 12, 2023 at 5:25 PM Andreas Schwab wrote: > On Sep 20 2023, Rui Ueyama via Binutils wrote: > > > @@ -4049,6 +4057,13 @@ md_apply_fix (fixS *fixP, valueT *valP, segT seg > ATTRIBUTE_UNUSED) > > break; > > > > case BFD_RELOC_RISCV_GOT_HI20: > > + /* R_RISCV_GOT_HI20 and the following R_RISCV_LO12_I are relaxable > > + only if it is created as a result of la or lga assembler macros. > */ > > + if (fixP->tc_fix_data.source_macro == M_LA || > > + fixP->tc_fix_data.source_macro == M_LGA) > > Line break before the operator, not after. Thanks, committed with updated ChangeLog/messages and this line break fix. Nelson