aboutsummaryrefslogtreecommitdiff
path: root/opcodes
diff options
context:
space:
mode:
Diffstat (limited to 'opcodes')
-rw-r--r--opcodes/ChangeLog5
-rw-r--r--opcodes/z80-dis.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index 2b70221..66f9980 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,5 +1,10 @@
2021-07-01 Mike Frysinger <vapier@gentoo.org>
+ * z80-dis.c (opc_ed): Make const.
+ (pref_ed): Make p const.
+
+2021-07-01 Mike Frysinger <vapier@gentoo.org>
+
* microblaze-dis.c (get_field_special): Make op const.
(read_insn_microblaze): Make opr & op const. Rename opcodes to
microblaze_opcodes.
diff --git a/opcodes/z80-dis.c b/opcodes/z80-dis.c
index 9b9f941..0e7a312 100644
--- a/opcodes/z80-dis.c
+++ b/opcodes/z80-dis.c
@@ -414,7 +414,7 @@ dump (struct buffer *buf, disassemble_info * info, const char *txt)
}
/* Table to disassemble machine codes with prefix 0xED. */
-struct tab_elt opc_ed[] =
+static const struct tab_elt opc_ed[] =
{
{ 0x30, 0xFF, prt, "mul d,e", INSS_Z80N },
{ 0x31, 0xFF, prt, "add hl,a", INSS_Z80N },
@@ -525,7 +525,7 @@ static int
pref_ed (struct buffer *buf, disassemble_info *info,
const char *txt ATTRIBUTE_UNUSED)
{
- struct tab_elt *p;
+ const struct tab_elt *p;
if (fetch_data (buf, info, 1))
{