diff options
author | Maciej W. Rozycki <macro@imgtec.com> | 2016-12-08 22:51:44 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@imgtec.com> | 2016-12-08 23:21:23 +0000 |
commit | 329d01f70ea6367a9593c9b31e268c06dd729ec9 (patch) | |
tree | ca14dec75e027a21e3a6ebd83ea6f09405c79841 /opcodes/ChangeLog | |
parent | 3a2488dd21a895df3ffb49048f5de1a83ce2ddd4 (diff) | |
download | gdb-329d01f70ea6367a9593c9b31e268c06dd729ec9.zip gdb-329d01f70ea6367a9593c9b31e268c06dd729ec9.tar.gz gdb-329d01f70ea6367a9593c9b31e268c06dd729ec9.tar.bz2 |
AArch64/opcodes: Correct another `index' global shadowing error
Fix a commit c2c4ff8d52a2 ("[AArch64] Add ARMv8.3 FCMLA and FCADD
instructions") build regression:
cc1: warnings being treated as errors
.../opcodes/aarch64-dis.c: In function 'aarch64_ext_sve_addr_rr_lsl':
.../opcodes/aarch64-dis.c:1324: error: declaration of 'index' shadows a global declaration
/usr/include/string.h:303: error: shadowed declaration is here
make[4]: *** [aarch64-asm.lo] Error 1
in a way following commit 91d6fa6a035c ("Add -Wshadow to the gcc command
line options used when compiling the binutils.").
opcodes/
* aarch64-asm.c (aarch64_ins_reglane): Rename `index' local
variable to `reglane_index'.
Diffstat (limited to 'opcodes/ChangeLog')
-rw-r--r-- | opcodes/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 09f0341..110739a 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2016-12-08 Maciej W. Rozycki <macro@imgtec.com> + + * aarch64-asm.c (aarch64_ins_reglane): Rename `index' local + variable to `reglane_index'. + 2016-12-08 Luis Machado <lgustavo@codesourcery.com> * ppc-dis.c (get_powerpc_dialect): Check NULL info->section. |