diff options
author | Andreas Krebbel <krebbel@linux.vnet.ibm.com> | 2017-07-21 10:54:06 +0200 |
---|---|---|
committer | Andreas Krebbel <krebbel@linux.vnet.ibm.com> | 2017-07-21 10:54:06 +0200 |
commit | 47826cdbec2548cd1d25acf4cfaf908ae88f3325 (patch) | |
tree | f71689a0276eed102b300d369e72f9fce7280503 /gas/config | |
parent | 33d69f87279fd33a951eafd025b4d188bc71d97c (diff) | |
download | gdb-47826cdbec2548cd1d25acf4cfaf908ae88f3325.zip gdb-47826cdbec2548cd1d25acf4cfaf908ae88f3325.tar.gz gdb-47826cdbec2548cd1d25acf4cfaf908ae88f3325.tar.bz2 |
S/390: Support z14 as CPU name.
With IBM z14 officially announced I can add z14 as CPU name.
No regressions with that patch on s390x.
gas/ChangeLog:
2017-07-21 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
* config/tc-s390.c (s390_parse_cpu): Add z14 as alternate CPU
name.
* doc/as.texinfo: Add z14 to CPU string list.
* doc/c-s390.texi: Likewise.
opcodes/ChangeLog:
2017-07-21 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
* s390-mkopc.c (main): Enable z14 as CPU string in the opcode
table.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-s390.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-s390.c b/gas/config/tc-s390.c index 3ec5a27..84b2e27 100644 --- a/gas/config/tc-s390.c +++ b/gas/config/tc-s390.c @@ -290,7 +290,7 @@ s390_parse_cpu (const char * arg, S390_INSTR_FLAG_HTM }, { STRING_COMMA_LEN ("z13"), STRING_COMMA_LEN ("arch11"), S390_INSTR_FLAG_HTM | S390_INSTR_FLAG_VX }, - { STRING_COMMA_LEN ("arch12"), STRING_COMMA_LEN (""), + { STRING_COMMA_LEN ("z14"), STRING_COMMA_LEN ("arch12"), S390_INSTR_FLAG_HTM | S390_INSTR_FLAG_VX } }; static struct |