summaryrefslogtreecommitdiff
path: root/opcodes/rx-dis.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2015-11-16 14:26:07 +0000
committerNick Clifton <nickc@redhat.com>2015-11-17 11:37:14 +0000
commite7286c5668bcc5de0bfe523ac7b7cddabeffebe5 (patch)
tree70029860b74ca69800bad21001c4d46f720753a3 /opcodes/rx-dis.c
parent340c283058287c3c1307f0a8d44239e802d6c8c5 (diff)
downloadbinutils-gdb-e7286c5668bcc5de0bfe523ac7b7cddabeffebe5.tar.gz
Fix the disassembly of conditional instructions will illegal condition selections.
* rx-dis.c (condition_names): Replace always and never with invalid, since the always/never conditions can never be legal.
Diffstat (limited to 'opcodes/rx-dis.c')
-rw-r--r--opcodes/rx-dis.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/rx-dis.c b/opcodes/rx-dis.c
index 6d4c41a845b..01d0385a96e 100644
--- a/opcodes/rx-dis.c
+++ b/opcodes/rx-dis.c
@@ -74,7 +74,7 @@ static char const * condition_names[] =
{
/* condition codes */
"eq", "ne", "c", "nc", "gtu", "leu", "pz", "n",
- "ge", "lt", "gt", "le", "o", "no", "always", "never"
+ "ge", "lt", "gt", "le", "o", "no", "<invalid>", "<invalid>"
};
static const char * flag_names[] =