diff options
author | Alan Modra <amodra@gmail.com> | 2021-07-02 17:27:31 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2021-07-02 20:48:55 +0930 |
commit | 62194b631d00112bac1f8856d3259d774df4c15e (patch) | |
tree | cd7385f4fdfbd31d5773180313cea95c3b340bdf /opcodes/ChangeLog | |
parent | af82b082c27eeefa261753e746fd002cc528cd1f (diff) | |
download | binutils-gdb-62194b631d00112bac1f8856d3259d774df4c15e.tar.gz |
Re: Fix minor NDS32 renaming snafu
Some extern declarations differ in constnes to their definitions too.
Let's make sure this sort of thing doesn't happen again, but putting
the externs in a header where they belong.
gas/
* config/tc-nds32.c (nds32_keyword_gpr): Don't declare.
(md_begin): Constify k.
opcodes/
* nds32-dis.c (nds32_find_reg_keyword): Constify arg and return.
(nds32_parse_audio_ext, nds32_parse_opcode): Constify psys_reg.
(nds32_field_table, nds32_opcode_table, nds32_keyword_table),
(nds32_opcodes, nds32_operand_fields, nds32_keywords),
(nds32_keyword_gpr): Move declarations to..
* nds32-asm.h: ..here, constifying to match definitions.
Diffstat (limited to 'opcodes/ChangeLog')
-rw-r--r-- | opcodes/ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index b3d73dcd4ae..25e8f66e328 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,12 @@ +2021-07-02 Alan Modra <amodra@gmail.com> + + * nds32-dis.c (nds32_find_reg_keyword): Constify arg and return. + (nds32_parse_audio_ext, nds32_parse_opcode): Constify psys_reg. + (nds32_field_table, nds32_opcode_table, nds32_keyword_table), + (nds32_opcodes, nds32_operand_fields, nds32_keywords), + (nds32_keyword_gpr): Move declarations to.. + * nds32-asm.h: ..here, constifying to match definitions. + 2021-07-01 Mike Frysinger <vapier@gentoo.org> * Makefile.am (GUILE): New variable. |