From 47826cdbec2548cd1d25acf4cfaf908ae88f3325 Mon Sep 17 00:00:00 2001 From: Andreas Krebbel Date: Fri, 21 Jul 2017 10:54:06 +0200 Subject: 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 * 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 * s390-mkopc.c (main): Enable z14 as CPU string in the opcode table. --- opcodes/s390-mkopc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'opcodes/s390-mkopc.c') diff --git a/opcodes/s390-mkopc.c b/opcodes/s390-mkopc.c index 0d4c9df..20c1539 100644 --- a/opcodes/s390-mkopc.c +++ b/opcodes/s390-mkopc.c @@ -374,7 +374,8 @@ main (void) else if (strcmp (cpu_string, "z13") == 0 || strcmp (cpu_string, "arch11") == 0) min_cpu = S390_OPCODE_Z13; - else if (strcmp (cpu_string, "arch12") == 0) + else if (strcmp (cpu_string, "z14") == 0 + || strcmp (cpu_string, "arch12") == 0) min_cpu = S390_OPCODE_ARCH12; else { fprintf (stderr, "Couldn't parse cpu string %s\n", cpu_string); -- cgit v1.1