aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bfd/elfnn-loongarch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elfnn-loongarch.c b/bfd/elfnn-loongarch.c
index 2f1c78a..0987628 100644
--- a/bfd/elfnn-loongarch.c
+++ b/bfd/elfnn-loongarch.c
@@ -4309,8 +4309,8 @@ loongarch_relax_align (bfd *abfd, asection *sec,
{
bfd_vma addend, max = 0, alignment = 1;
- int index = ELFNN_R_SYM (rel->r_info);
- if (index > 0)
+ int sym_index = ELFNN_R_SYM (rel->r_info);
+ if (sym_index > 0)
{
alignment = 1 << (rel->r_addend & 0xff);
max = rel->r_addend >> 8;