config.gcc (powerpc*-*): Clear $with_cpu or $with_tune if it was set to default{32...
authorJakub Jelinek <jakub@redhat.com>
Fri, 23 Jan 2004 17:42:58 +0000 (18:42 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Fri, 23 Jan 2004 17:42:58 +0000 (18:42 +0100)
* config.gcc (powerpc*-*): Clear $with_cpu or $with_tune if it was
set to default{32,64}.

From-SVN: r76439

gcc/ChangeLog
gcc/config.gcc

index f71af429e9a24cfed966807d941e2d71080332e8..619cb9909491564b216ed248ffcd7bd5f2b975f5 100644 (file)
@@ -1,3 +1,8 @@
+2004-01-23  Jakub Jelinek  <jakub@redhat.com>
+
+       * config.gcc (powerpc*-*): Clear $with_cpu or $with_tune if it was
+       set to default{32,64}.
+
 2004-01-21  Jakub Jelinek  <jakub@redhat.com>
 
        * config/rs6000/linux64.h (MD_FALLBACK_FRAME_STATE_FOR)
index 977f7fbf7e805f4c0dc767391f7f1f67e993b6d8..16d53260e2fc8fdeecca06b0490b161744d5da82 100644 (file)
@@ -2527,7 +2527,11 @@ fi
                for which in cpu tune; do
                        eval "val=\$with_$which"
                        case ${val} in
-                       "" | default32 | default64 | common \
+                       default32 | default64)
+                               with_which="with_$which"
+                               eval $with_which=
+                               ;;
+                       "" | common \
                        | power | power2 | power3 | power4 \
                        | powerpc | powerpc64 \
                        | rios | rios1 | rios2 | rsc | rsc1 | rs64a \