|
|
e1d87d |
commit 47826cdbec2548cd1d25acf4cfaf908ae88f3325
|
|
|
e1d87d |
Author: Andreas Krebbel <krebbel@linux.vnet.ibm.com>
|
|
|
e1d87d |
Date: Fri Jul 21 10:54:06 2017 +0200
|
|
|
e1d87d |
|
|
|
e1d87d |
S/390: Support z14 as CPU name.
|
|
|
e1d87d |
|
|
|
e1d87d |
With IBM z14 officially announced I can add z14 as CPU name.
|
|
|
e1d87d |
|
|
|
e1d87d |
No regressions with that patch on s390x.
|
|
|
e1d87d |
|
|
|
e1d87d |
gas/ChangeLog:
|
|
|
e1d87d |
|
|
|
e1d87d |
2017-07-21 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
|
|
|
e1d87d |
|
|
|
e1d87d |
* config/tc-s390.c (s390_parse_cpu): Add z14 as alternate CPU
|
|
|
e1d87d |
name.
|
|
|
e1d87d |
* doc/as.texinfo: Add z14 to CPU string list.
|
|
|
e1d87d |
* doc/c-s390.texi: Likewise.
|
|
|
e1d87d |
|
|
|
e1d87d |
opcodes/ChangeLog:
|
|
|
e1d87d |
|
|
|
e1d87d |
2017-07-21 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
|
|
|
e1d87d |
|
|
|
e1d87d |
* s390-mkopc.c (main): Enable z14 as CPU string in the opcode
|
|
|
e1d87d |
table.
|
|
|
e1d87d |
|
|
|
e1d87d |
### a/opcodes/ChangeLog
|
|
|
e1d87d |
### b/opcodes/ChangeLog
|
|
|
e1d87d |
## -1,3 +1,8 @@
|
|
|
e1d87d |
+2017-07-21 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
|
|
|
e1d87d |
+
|
|
|
e1d87d |
+ * s390-mkopc.c (main): Enable z14 as CPU string in the opcode
|
|
|
e1d87d |
+ table.
|
|
|
e1d87d |
+
|
|
|
e1d87d |
2017-07-20 Nick Clifton <nickc@redhat.com>
|
|
|
e1d87d |
|
|
|
e1d87d |
* po/de.po: Updated German translation.
|
|
|
e1d87d |
--- a/opcodes/s390-mkopc.c
|
|
|
e1d87d |
+++ b/opcodes/s390-mkopc.c
|
|
|
e1d87d |
@@ -374,7 +374,8 @@ main (void)
|
|
|
e1d87d |
else if (strcmp (cpu_string, "z13") == 0
|
|
|
e1d87d |
|| strcmp (cpu_string, "arch11") == 0)
|
|
|
e1d87d |
min_cpu = S390_OPCODE_Z13;
|
|
|
e1d87d |
- else if (strcmp (cpu_string, "arch12") == 0)
|
|
|
e1d87d |
+ else if (strcmp (cpu_string, "z14") == 0
|
|
|
e1d87d |
+ || strcmp (cpu_string, "arch12") == 0)
|
|
|
e1d87d |
min_cpu = S390_OPCODE_ARCH12;
|
|
|
e1d87d |
else {
|
|
|
e1d87d |
fprintf (stderr, "Couldn't parse cpu string %s\n", cpu_string);
|