]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
s390: Fix arch15 machine string for binutils
authorStefan Schulze Frielinghaus <stefansf@gcc.gnu.org>
Wed, 22 Jan 2025 12:55:08 +0000 (13:55 +0100)
committerStefan Schulze Frielinghaus <stefansf@gcc.gnu.org>
Wed, 22 Jan 2025 12:55:08 +0000 (13:55 +0100)
gcc/ChangeLog:

* config/s390/s390.cc: Fix arch15 machine string which must not
be empty.

gcc/config/s390/s390.cc

index 313f968c87e7e5aa2739df7504e05f99ffd41b26..86a5f059b85dc6e48612861a5c4c18669be59a4c 100644 (file)
@@ -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  }
 };