aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Krebbel <krebbel@linux.ibm.com>2021-03-09 11:45:31 +0100
committerAndreas Krebbel <krebbel@linux.ibm.com>2021-03-09 14:51:50 +0100
commit43c66b1606dbcd704f3c99a4d396f7d9fb917858 (patch)
tree19ef0464272e06016395e643e9cdbf2d0892c8d0
parentea7fff4c43a24dee1db4153250455e6040a1afce (diff)
downloadgcc-43c66b1606dbcd704f3c99a4d396f7d9fb917858.zip
gcc-43c66b1606dbcd704f3c99a4d396f7d9fb917858.tar.gz
gcc-43c66b1606dbcd704f3c99a4d396f7d9fb917858.tar.bz2
IBM Z: arch14 fix option string used for Binutils
gcc/ChangeLog: * config/s390/s390.c (struct s390_processor processor_table): Binutils name string must not be empty.
-rw-r--r--gcc/config/s390/s390.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/s390/s390.c b/gcc/config/s390/s390.c
index de48271..151136b 100644
--- a/gcc/config/s390/s390.c
+++ b/gcc/config/s390/s390.c
@@ -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 }
};