IBM Z: arch14 fix option string used for Binutils
authorAndreas Krebbel <krebbel@linux.ibm.com>
Tue, 9 Mar 2021 10:45:31 +0000 (11:45 +0100)
committerAndreas Krebbel <krebbel@linux.ibm.com>
Tue, 9 Mar 2021 13:51:50 +0000 (14:51 +0100)
gcc/ChangeLog:

* config/s390/s390.c (struct s390_processor processor_table):
Binutils name string must not be empty.

gcc/config/s390/s390.c

index de48271..151136b 100644 (file)
@@ -337,7 +337,7 @@ const struct s390_processor processor_table[] =
   { "z13",    "z13",    PROCESSOR_2964_Z13,    &zEC12_cost,  11 },
   { "z14",    "arch12", PROCESSOR_3906_Z14,    &zEC12_cost,  12 },
   { "z15",    "arch13", PROCESSOR_8561_Z15,    &zEC12_cost,  13 },
-  { "arch14", "",       PROCESSOR_ARCH14,      &zEC12_cost,  14 },
+  { "arch14", "arch14", PROCESSOR_ARCH14,      &zEC12_cost,  14 },
   { "native", "",       PROCESSOR_NATIVE,      NULL,         0  }
 };