diff options
author | Andreas Krebbel <krebbel@linux.vnet.ibm.com> | 2017-03-21 14:21:02 +0100 |
---|---|---|
committer | Andreas Krebbel <krebbel@linux.vnet.ibm.com> | 2017-03-21 14:21:02 +0100 |
commit | 2253c8f089193b90141e08436417bc8ea1dd6015 (patch) | |
tree | dc10dd77cb261985705c0da0562e5d5d29ae405c /opcodes/s390-mkopc.c | |
parent | 4a14e306468af630a27302d68b8d4c59733141b4 (diff) | |
download | gdb-2253c8f089193b90141e08436417bc8ea1dd6015.zip gdb-2253c8f089193b90141e08436417bc8ea1dd6015.tar.gz gdb-2253c8f089193b90141e08436417bc8ea1dd6015.tar.bz2 |
S/390: Remove vx2 facility flag
This patch removes the vx2 facility flag. It will not be used by GCC
and was a misnomer anyway.
Committed to mainline and 2.28 branch.
include/ChangeLog:
2017-03-21 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
* opcode/s390.h (S390_INSTR_FLAG_VX2): Remove.
(S390_INSTR_FLAG_FACILITY_MASK): Adjust value.
gas/ChangeLog:
2017-03-21 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
* config/tc-s390.c (s390_parse_cpu): Remove S390_INSTR_FLAG_VX2
from cpu_table. Remove vx2, and novx2 from cpu_flags.
opcodes/ChangeLog:
2017-03-21 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
* s390-mkopc.c (main): Remove vx2 check.
* s390-opc.txt: Remove vx2 instruction flags.
Diffstat (limited to 'opcodes/s390-mkopc.c')
-rw-r--r-- | opcodes/s390-mkopc.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/opcodes/s390-mkopc.c b/opcodes/s390-mkopc.c index 8e0b332..68c55a9 100644 --- a/opcodes/s390-mkopc.c +++ b/opcodes/s390-mkopc.c @@ -419,10 +419,6 @@ main (void) && (str[2] == 0 || str[2] == ',')) { flag_bits |= S390_INSTR_FLAG_VX; str += 2; - } else if (strncmp (str, "vx2", 3) == 0 - && (str[3] == 0 || str[3] == ',')) { - flag_bits |= S390_INSTR_FLAG_VX2; - str += 3; } else { fprintf (stderr, "Couldn't parse flags string %s\n", flags_string); |