diff options
author | Andreas Krebbel <krebbel@linux.vnet.ibm.com> | 2017-05-29 12:36:57 +0200 |
---|---|---|
committer | Andreas Krebbel <krebbel@linux.vnet.ibm.com> | 2017-05-30 10:32:44 +0200 |
commit | ffc61c5de1a5a89e3e37fb9376725c32a839c34d (patch) | |
tree | afaaa83c95d907a473fc05cda78844321886c8cb /opcodes/s390-opc.c | |
parent | a09f2586017aeed82fa07c8bfea6c75859295bd9 (diff) | |
download | gdb-ffc61c5de1a5a89e3e37fb9376725c32a839c34d.zip gdb-ffc61c5de1a5a89e3e37fb9376725c32a839c34d.tar.gz gdb-ffc61c5de1a5a89e3e37fb9376725c32a839c34d.tar.bz2 |
S/390: Add ipte/idte variants with optional operands
This patch adds missing variants of ipte and idte instructions added with later CPU
generations.
ipte got an optional operand with z196 and another one with zEC12.
idte got an optional operand with zEC12
opcodes/ChangeLog:
2017-05-30 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
* s390-opc.c: Add new idte/ipte variants.
* s390-opc.txt: Likewise.
gas/ChangeLog:
2017-05-30 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
* testsuite/gas/s390/zarch-z196.d: Add new idte/ipte variants.
* testsuite/gas/s390/zarch-z196.s: Likewise.
* testsuite/gas/s390/zarch-zEC12.d: Likewise.
* testsuite/gas/s390/zarch-zEC12.s: Likewise.
Diffstat (limited to 'opcodes/s390-opc.c')
-rw-r--r-- | opcodes/s390-opc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/s390-opc.c b/opcodes/s390-opc.c index ca75375..deefce3 100644 --- a/opcodes/s390-opc.c +++ b/opcodes/s390-opc.c @@ -355,7 +355,7 @@ const struct s390_operand s390_operands[] = #define INSTR_RRF_FEUFEFE 4, { FE_24,FE_16,FE_28,U4_20,0,0 } /* e.g. qaxtr */ #define INSTR_RRF_FUFF2 4, { F_24,F_28,F_16,U4_20,0,0 } /* e.g. adtra */ #define INSTR_RRF_FEUFEFE2 4, { FE_24,FE_28,FE_16,U4_20,0,0 } /* e.g. axtra */ -#define INSTR_RRF_RURR 4, { R_24,R_28,R_16,U4_20,0,0 } /* e.g. .insn */ +#define INSTR_RRF_RURR 4, { R_24,R_28,R_16,U4_20,0,0 } /* e.g. ipte */ #define INSTR_RRF_RURR2 4, { R_24,R_16,R_28,U4_20,0,0 } /* e.g. lptea */ #define INSTR_RRF_R0RR 4, { R_24,R_16,R_28,0,0,0 } /* e.g. idte */ #define INSTR_RRF_R0RR2 4, { R_24,R_28,R_16,0,0,0 } /* e.g. ark */ |