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.
This commit is contained in:
parent
340c283058
commit
e7286c5668
@ -1,3 +1,8 @@
|
||||
2015-11-16 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* rx-dis.c (condition_names): Replace always and never with
|
||||
invalid, since the always/never conditions can never be legal.
|
||||
|
||||
2015-11-13 Tristan Gingold <gingold@adacore.com>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -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[] =
|
||||
|
Loading…
x
Reference in New Issue
Block a user