diff options
author | Andreas Krebbel <krebbel@linux.vnet.ibm.com> | 2015-10-14 10:58:41 +0200 |
---|---|---|
committer | Andreas Krebbel <krebbel@linux.vnet.ibm.com> | 2015-10-14 10:58:41 +0200 |
commit | c46eb7b88a1261bc079bfbe2339060152bdf3527 (patch) | |
tree | 81c1781d1431c7cf1646d6d131bbed7baffdfc7d /opcodes | |
parent | efb068d3027d3f24430b1f8b5c2b6b02d3f37869 (diff) | |
download | gdb-c46eb7b88a1261bc079bfbe2339060152bdf3527.zip gdb-c46eb7b88a1261bc079bfbe2339060152bdf3527.tar.gz gdb-c46eb7b88a1261bc079bfbe2339060152bdf3527.tar.bz2 |
S/390: Fix instruction type of troo, trot, trto, and trtt.
opcodes/ChangeLog:
2015-10-14 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
* s390-opc.c: Fix comment.
* s390-opc.txt: Change instruction type for troo, trot, trto, and
trtt to RRF_U0RER since the second parameter does not need to be a
register pair.
gas/testsuite/ChangeLog:
2015-10-14 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
* gas/s390/esa-g5.d: Use odd GPR for the second operand.
* gas/s390/esa-g5.s: Likewise.
* gas/s390/esa-z9-109.d: Likewise.
* gas/s390/esa-z9-109.s: Likewise.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/s390-opc.c | 2 | ||||
-rw-r--r-- | opcodes/s390-opc.txt | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/opcodes/s390-opc.c b/opcodes/s390-opc.c index 060c868..f9352cc 100644 --- a/opcodes/s390-opc.c +++ b/opcodes/s390-opc.c @@ -370,7 +370,7 @@ const struct s390_operand s390_operands[] = #define INSTR_RRF_FEFERU 4, { FE_24,FE_16,R_28,U4_20,0,0 } /* e.g. rrxtr */ #define INSTR_RRF_U0RR 4, { R_24,R_28,U4_16,0,0,0 } /* e.g. sske */ #define INSTR_RRF_U0RER 4, { RE_24,R_28,U4_16,0,0,0 } /* e.g. trte */ -#define INSTR_RRF_U0RERE 4, { RE_24,RE_28,U4_16,0,0,0 } /* e.g. troo */ +#define INSTR_RRF_U0RERE 4, { RE_24,RE_28,U4_16,0,0,0 } /* e.g. cu24 */ #define INSTR_RRF_00RR 4, { R_24,R_28,0,0,0,0 } /* e.g. clrtne */ #define INSTR_RRF_UUFR 4, { F_24,U4_16,R_28,U4_20,0,0 } /* e.g. cdgtra */ #define INSTR_RRF_UUFER 4, { FE_24,U4_16,R_28,U4_20,0,0 } /* e.g. cxfbra */ diff --git a/opcodes/s390-opc.txt b/opcodes/s390-opc.txt index 477ad0d..b9a2f10 100644 --- a/opcodes/s390-opc.txt +++ b/opcodes/s390-opc.txt @@ -767,10 +767,10 @@ b9aa lptea RRF_RURR2 "load page-table-entry address" z9-109 zarch # z9-109 conditional sske facility, sske instruction entered twice b22b sske RRF_U0RR "set storage key extended" z9-109 zarch optparm # z9-109 etf2-enhancement facility, instructions entered twice -b993 troo RRF_U0RERE "translate one to one" z9-109 esa,zarch optparm -b992 trot RRF_U0RERE "translate one to two" z9-109 esa,zarch optparm -b991 trto RRF_U0RERE "translate two to one" z9-109 esa,zarch optparm -b990 trtt RRF_U0RERE "translate two to two" z9-109 esa,zarch optparm +b993 troo RRF_U0RER "translate one to one" z9-109 esa,zarch optparm +b992 trot RRF_U0RER "translate one to two" z9-109 esa,zarch optparm +b991 trto RRF_U0RER "translate two to one" z9-109 esa,zarch optparm +b990 trtt RRF_U0RER "translate two to two" z9-109 esa,zarch optparm # z9-109 etf3-enhancement facility, some instructions entered twice b9b1 cu24 RRF_U0RERE "convert utf-16 to utf-32" z9-109 zarch optparm b2a6 cu21 RRF_U0RERE "convert utf-16 to utf-8" z9-109 zarch optparm |