svn commit: r204987 - user/jmallett/octeon/contrib/gcc/config/mips

Juli Mallett jmallett at FreeBSD.org
Wed Mar 10 22:33:32 UTC 2010


Author: jmallett
Date: Wed Mar 10 22:33:32 2010
New Revision: 204987
URL: http://svn.freebsd.org/changeset/base/204987

Log:
  Don't set a default ISA like that.  The from-abi default is good enough and
  more correct.  This hopefully unbreaks my overriding of the default ISA based
  on the TARGET_CPUTYPE.

Modified:
  user/jmallett/octeon/contrib/gcc/config/mips/freebsd.h

Modified: user/jmallett/octeon/contrib/gcc/config/mips/freebsd.h
==============================================================================
--- user/jmallett/octeon/contrib/gcc/config/mips/freebsd.h	Wed Mar 10 22:23:55 2010	(r204986)
+++ user/jmallett/octeon/contrib/gcc/config/mips/freebsd.h	Wed Mar 10 22:33:32 2010	(r204987)
@@ -259,22 +259,18 @@ Boston, MA 02110-1301, USA.  */
 #if MIPS_ABI_DEFAULT == ABI_N32
 #define DRIVER_SELF_SPECS \
 	"%{!EB:%{!EL:%(endian_spec)}}", \
-	"%{!march=*: -march=mips64}",   \
 	"%{!mabi=*: -mabi=n32}"
 #elif MIPS_ABI_DEFAULT == ABI_64
 #define DRIVER_SELF_SPECS \
 	"%{!EB:%{!EL:%(endian_spec)}}", \
-	"%{!march=*: -march=mips64}",   \
 	"%{!mabi=*: -mabi=64}"
 #elif MIPS_ABI_DEFAULT == ABI_O64
 #define DRIVER_SELF_SPECS \
 	"%{!EB:%{!EL:%(endian_spec)}}", \
-	"%{!march=*: -march=mips64}",   \
 	"%{!mabi=*: -mabi=o64}"
 #else /* default to o32 */
 #define DRIVER_SELF_SPECS \
 	"%{!EB:%{!EL:%(endian_spec)}}", \
-	"%{!march=*: -march=mips32}",   \
 	"%{!mabi=*: -mabi=32}"
 #endif
 


More information about the svn-src-user mailing list