[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC PATCH 11/15] config.sub: remove two unreachable case clauses.
From: |
Zack Weinberg |
Subject: |
[RFC PATCH 11/15] config.sub: remove two unreachable case clauses. |
Date: |
Mon, 3 Jun 2024 15:28:40 -0400 |
These attempt to perform normalizations that were already done by
code above this point, so they are unnecessary. There are already
test cases for these normalizations.
---
config.sub | 6 ------
1 file changed, 6 deletions(-)
diff --git a/config.sub b/config.sub
index 3f667ea..9305b40 100755
--- a/config.sub
+++ b/config.sub
@@ -1128,9 +1128,6 @@ case $cpu-$vendor in
pentium4-*)
cpu=i786
;;
- pc98-*)
- cpu=i386
- ;;
ppc-* | ppcbe-*)
cpu=powerpc
;;
@@ -1164,9 +1161,6 @@ case $cpu-$vendor in
tx39el-*)
cpu=mipstx39el
;;
- x64-*)
- cpu=x86_64
- ;;
xscale-* | xscalee[bl]-*)
cpu=`echo "$cpu" | sed 's/^xscale/arm/'`
;;
--
2.43.2
- [RFC PATCH 00/15] config.sub bug fixes, Zack Weinberg, 2024/06/03
- [RFC PATCH 01/15] config.sub: testsuite: whitespace and sorting corrections., Zack Weinberg, 2024/06/03
- [RFC PATCH 02/15] config.sub: disable shellcheck warning SC2162 globally., Zack Weinberg, 2024/06/03
- [RFC PATCH 03/15] config.sub: flatten and sort long case-alternative lists, Zack Weinberg, 2024/06/03
- [RFC PATCH 04/15] config.sub: correct Bull DPX/2-[123]00 and DPX/20 canonical names., Zack Weinberg, 2024/06/03
- [RFC PATCH 05/15] config.sub: consistently use sun as default vendor for solaris*., Zack Weinberg, 2024/06/03
- [RFC PATCH 06/15] config.sub: accept knetbsd-gnu, netbsd-gnu, uclinux-gnu., Zack Weinberg, 2024/06/03
- [RFC PATCH 07/15] config.sub: handle cNN-convex and convex-cNN shorthands correctly., Zack Weinberg, 2024/06/03
- [RFC PATCH 08/15] config.sub: don’t override OS for c90-cray., Zack Weinberg, 2024/06/03
- [RFC PATCH 09/15] config.sub: don’t override OS for blackfin, m68knommu, parisc., Zack Weinberg, 2024/06/03
- [RFC PATCH 11/15] config.sub: remove two unreachable case clauses.,
Zack Weinberg <=
- [RFC PATCH 10/15] config.sub: normalize nextstep/openstep consistently., Zack Weinberg, 2024/06/03
- [RFC PATCH 12/15] config.sub: Treat i386-pc-rtmk-nova as a 4-part system name., Zack Weinberg, 2024/06/03
- [RFC PATCH 13/15] config.sub: improve consistency of shorthands and X-Y partial names., Zack Weinberg, 2024/06/03
- [RFC PATCH 14/15] config.sub: add missing CPUs, vendors, and OSes., Zack Weinberg, 2024/06/03
- [RFC PATCH 15/15] config.sub: testsuite: add 121 more test cases., Zack Weinberg, 2024/06/03
- Re: [RFC PATCH 00/15] config.sub bug fixes, Zack Weinberg, 2024/06/12