* rx-decode.opc (rx_decode_opcode): Check sd field as well as ss
field when checking for type 2 nop. * rx-decode.c: Regenerate.
This commit is contained in:
parent
aaff8d734a
commit
b5e04c2b90
@ -1,3 +1,9 @@
|
||||
2013-06-26 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* rx-decode.opc (rx_decode_opcode): Check sd field as well as ss
|
||||
field when checking for type 2 nop.
|
||||
* rx-decode.c: Regenerate.
|
||||
|
||||
2013-06-25 Maciej W. Rozycki <macro@codesourcery.com>
|
||||
|
||||
* micromips-opc.c (micromips_opcodes): Add "jraddiusp", "jrc"
|
||||
|
@ -6340,7 +6340,7 @@ rx_decode_opcode (unsigned long pc AU,
|
||||
}
|
||||
SYNTAX("mov%s %1, %0");
|
||||
#line 307 "rx-decode.opc"
|
||||
if (ss == 3 && sz == 2 && rsrc == 0 && rdst == 0)
|
||||
if (sd == 3 && ss == 3 && sz == 2 && rsrc == 0 && rdst == 0)
|
||||
{
|
||||
ID(nop2);
|
||||
rx->syntax = "nop";
|
||||
|
@ -304,7 +304,7 @@ rx_decode_opcode (unsigned long pc AU,
|
||||
ID(mov); sBWL (sz); DIs(dst, d*16+sppp, sz); SC(IMM(1)); F_____;
|
||||
|
||||
/** 11sz sd ss rsrc rdst mov%s %1, %0 */
|
||||
if (ss == 3 && sz == 2 && rsrc == 0 && rdst == 0)
|
||||
if (sd == 3 && ss == 3 && sz == 2 && rsrc == 0 && rdst == 0)
|
||||
{
|
||||
ID(nop2);
|
||||
rx->syntax = "nop";
|
||||
|
Loading…
Reference in New Issue
Block a user