config-patches
[Top][All Lists]
Advanced

[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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]