From: Stefan Schulze Frielinghaus Date: Wed, 22 Jan 2025 12:55:08 +0000 (+0100) Subject: s390: Fix arch15 machine string for binutils X-Git-Tag: basepoints/gcc-16~2428 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9ece1c247b4d8dbb997a3dc16daa613401c6a84a;p=thirdparty%2Fgcc.git s390: Fix arch15 machine string for binutils gcc/ChangeLog: * config/s390/s390.cc: Fix arch15 machine string which must not be empty. --- diff --git a/gcc/config/s390/s390.cc b/gcc/config/s390/s390.cc index 313f968c87e..86a5f059b85 100644 --- a/gcc/config/s390/s390.cc +++ b/gcc/config/s390/s390.cc @@ -342,7 +342,7 @@ const struct s390_processor processor_table[] = { "z14", "arch12", PROCESSOR_3906_Z14, &zEC12_cost, 12 }, { "z15", "arch13", PROCESSOR_8561_Z15, &zEC12_cost, 13 }, { "z16", "arch14", PROCESSOR_3931_Z16, &zEC12_cost, 14 }, - { "arch15", "", PROCESSOR_ARCH15, &zEC12_cost, 15 }, + { "arch15", "arch15", PROCESSOR_ARCH15, &zEC12_cost, 15 }, { "native", "", PROCESSOR_NATIVE, NULL, 0 } };