From 9303e5df58c2b392eb1a10612ab96a1d701525cc Mon Sep 17 00:00:00 2001 From: Nigel Stephens Date: Fri, 14 Sep 2007 17:30:27 +0000 Subject: [PATCH] config.gcc (mips*-*-linux*): Recognise mipsisa32r2 and set MIPS_ISA_DEFAULT appropriately. gcc/ 2007-09-14 Nigel Stephens * config.gcc (mips*-*-linux*): Recognise mipsisa32r2 and set MIPS_ISA_DEFAULT appropriately. Don't make soft-float the default for mipsisa32-*-linux*. From-SVN: r128498 --- gcc/ChangeLog | 6 ++++++ gcc/config.gcc | 7 ++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 418aba5234d7..5c53e4cebc0b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2007-09-14 Nigel Stephens + + * config.gcc (mips*-*-linux*): Recognise mipsisa32r2 and set + MIPS_ISA_DEFAULT appropriately. Don't make soft-float the default + for mipsisa32-*-linux*. + 2007-09-14 Nigel Stephens David Ung Thiemo Seufer diff --git a/gcc/config.gcc b/gcc/config.gcc index e512b2492902..ddbc4c550a30 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1668,10 +1668,11 @@ mips64*-*-linux*) mips*-*-linux*) # Linux MIPS, either endian. tm_file="dbxelf.h elfos.h svr4.h linux.h ${tm_file} mips/linux.h" case ${target} in - mipsisa32*-*) - target_cpu_default="MASK_SOFT_FLOAT" - tm_defines="${tm_defines} MIPS_ISA_DEFAULT=32" + mipsisa32r2*) + tm_defines="${tm_defines} MIPS_ISA_DEFAULT=33" ;; + mipsisa32*) + tm_defines="${tm_defines} MIPS_ISA_DEFAULT=32" esac test x$with_llsc != x || with_llsc=yes ;;