From: Alan Modra Date: Wed, 3 Jan 2024 05:33:48 +0000 (+1030) Subject: loongarch: 'index' shadows global X-Git-Tag: binutils-2_42~250 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=375beedfd34162b1aeb9b28cacd6f458834716da;p=thirdparty%2Fbinutils-gdb.git loongarch: 'index' shadows global Avoid an error when compiling with older versions of gcc. * elfnn-loongarch.c (loongarch_relax_align): Rename "index" to "sym_index". --- diff --git a/bfd/elfnn-loongarch.c b/bfd/elfnn-loongarch.c index 2f1c78ab4f8..0987628098e 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;