LoongArch: Modify link_info.relax_pass from 3 to 2

The first pass handles R_LARCH_RELAX relocations, the second pass
handles R_LARCH_ALIGN relocations.
This commit is contained in:
mengqinggang 2023-11-16 19:19:15 +08:00 committed by liuzhensong
parent 4f2469d0cd
commit 8338aecd23
2 changed files with 2 additions and 2 deletions

View File

@ -4013,7 +4013,7 @@ loongarch_elf_relax_section (bfd *abfd, asection *sec,
switch (ELFNN_R_TYPE (rel->r_info))
{
case R_LARCH_ALIGN:
if (2 == info->relax_pass)
if (1 == info->relax_pass)
loongarch_relax_align (abfd, sec, sym_sec, info, rel, symval);
break;
case R_LARCH_DELETE:

View File

@ -42,7 +42,7 @@ larch_elf_before_allocation (void)
ENABLE_RELAXATION;
}
link_info.relax_pass = 3;
link_info.relax_pass = 2;
}
static void