diff options
author | mengqinggang <mengqinggang@loongson.cn> | 2023-11-16 19:19:15 +0800 |
---|---|---|
committer | liuzhensong <liuzhensong@loongson.cn> | 2023-11-17 16:38:55 +0800 |
commit | 8338aecd231af48483e36c93c103db1da715ac74 (patch) | |
tree | 57ed3aba7bb743b74a978c91e20399fb1fce58b9 /bfd | |
parent | 4f2469d0cdd0f3bd1d9040521e002e8df0a63a98 (diff) | |
download | gdb-8338aecd231af48483e36c93c103db1da715ac74.zip gdb-8338aecd231af48483e36c93c103db1da715ac74.tar.gz gdb-8338aecd231af48483e36c93c103db1da715ac74.tar.bz2 |
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.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/elfnn-loongarch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elfnn-loongarch.c b/bfd/elfnn-loongarch.c index 987e5b9..024c5d4 100644 --- a/bfd/elfnn-loongarch.c +++ b/bfd/elfnn-loongarch.c @@ -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: |