+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.
}
/* 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 },
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))
{