diff options
author | Nick Clifton <nickc@redhat.com> | 2015-11-16 14:26:07 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2015-11-17 11:37:14 +0000 |
commit | e7286c5668bcc5de0bfe523ac7b7cddabeffebe5 (patch) | |
tree | 70029860b74ca69800bad21001c4d46f720753a3 /opcodes/rx-dis.c | |
parent | 340c283058287c3c1307f0a8d44239e802d6c8c5 (diff) | |
download | gdb-e7286c5668bcc5de0bfe523ac7b7cddabeffebe5.zip gdb-e7286c5668bcc5de0bfe523ac7b7cddabeffebe5.tar.gz gdb-e7286c5668bcc5de0bfe523ac7b7cddabeffebe5.tar.bz2 |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/rx-dis.c b/opcodes/rx-dis.c index 6d4c41a..01d0385 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[] = |