mirror of https://github.com/xqemu/xqemu.git
cris: remove unused cris_cond15 declarations
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru> Reviewed-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
parent
cd232acfa0
commit
302cb24add
13
disas/cris.c
13
disas/cris.c
|
@ -1210,21 +1210,10 @@ cris_cc_strings[] =
|
||||||
"le",
|
"le",
|
||||||
"a",
|
"a",
|
||||||
/* This is a placeholder. In v0, this would be "ext". In v32, this
|
/* This is a placeholder. In v0, this would be "ext". In v32, this
|
||||||
is "sb". See cris_conds15. */
|
is "sb". */
|
||||||
"wf"
|
"wf"
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Different names and semantics for condition 1111 (0xf). */
|
|
||||||
const struct cris_cond15 cris_cond15s[] =
|
|
||||||
{
|
|
||||||
/* FIXME: In what version did condition "ext" disappear? */
|
|
||||||
{"ext", cris_ver_v0_3},
|
|
||||||
{"wf", cris_ver_v10},
|
|
||||||
{"sb", cris_ver_v32p},
|
|
||||||
{NULL, 0}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Local variables:
|
* Local variables:
|
||||||
* eval: (c-set-style "gnu")
|
* eval: (c-set-style "gnu")
|
||||||
|
|
|
@ -108,16 +108,6 @@ struct cris_support_reg
|
||||||
};
|
};
|
||||||
extern const struct cris_support_reg cris_support_regs[];
|
extern const struct cris_support_reg cris_support_regs[];
|
||||||
|
|
||||||
struct cris_cond15
|
|
||||||
{
|
|
||||||
/* The name of the condition. */
|
|
||||||
const char *const name;
|
|
||||||
|
|
||||||
/* What CPU version this condition name applies to. */
|
|
||||||
enum cris_insn_version_usage applicable_version;
|
|
||||||
};
|
|
||||||
extern const struct cris_cond15 cris_conds15[];
|
|
||||||
|
|
||||||
/* Opcode-dependent constants. */
|
/* Opcode-dependent constants. */
|
||||||
#define AUTOINCR_BIT (0x04)
|
#define AUTOINCR_BIT (0x04)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue