This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: loop-2b and such


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]