This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: loop-2b and such
- To: Mark Mitchell <mark at codesourcery dot com>
- Subject: Re: loop-2b and such
- From: "Joseph S. Myers" <jsm28 at cam dot ac dot uk>
- Date: Thu, 7 Jun 2001 23:46:35 +0100 (BST)
- cc: <gcc-patches at gcc dot gnu dot org>, Richard Henderson <rth at cygnus dot com>
On Thu, 7 Jun 2001, Mark Mitchell wrote:
> However, my recollection is that we have always been broken in this
> respect, and the the behavior of the loop-[23]*.c tests oscillate
> essentially randomly depending on other things in the compiler. In
> this sense, the term "regression" is somewhat bogus. On the other
In that case, OK to commit the following patch to the mainline? The only
regressions (configuring for athlon-pc-linux-gnu) were those loop ones I
reported.
2001-03-29 Joseph S. Myers <jsm28@cam.ac.uk>
* config.gcc: For $target_alias of athlon-*, set
target_cpu_default2=5.
--- config.gcc.orig Wed Mar 28 00:19:16 2001
+++ config.gcc Thu Mar 29 07:28:09 2001
@@ -3329,7 +3329,14 @@
esac
;;
i686-*-* | i786-*-*)
- target_cpu_default2=3
+ case $target_alias in
+ athlon-*)
+ target_cpu_default2=5
+ ;;
+ *)
+ target_cpu_default2=3
+ ;;
+ esac
;;
alpha*-*-*)
case $machine in
--
Joseph S. Myers
jsm28@cam.ac.uk