diff --git a/disas/cris.c b/disas/cris.c index 9dfb4e3885511061f192d552c0f3c9ee831ede8c..e6cff7a76559aa9c8cda751a534ef27e572a123e 100644 --- a/disas/cris.c +++ b/disas/cris.c @@ -1210,21 +1210,10 @@ cris_cc_strings[] = "le", "a", /* This is a placeholder. In v0, this would be "ext". In v32, this - is "sb". See cris_conds15. */ + is "sb". */ "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: * eval: (c-set-style "gnu") diff --git a/target-cris/opcode-cris.h b/target-cris/opcode-cris.h index 779d4aab7042dd1bd512dbde088e0146f77d768f..e7ebb98cd0cf2624eafc75dd43c01eeda283c0cb 100644 --- a/target-cris/opcode-cris.h +++ b/target-cris/opcode-cris.h @@ -108,16 +108,6 @@ struct cris_support_reg }; 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. */ #define AUTOINCR_BIT (0x04)