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]
Other format: [Raw text]

[PATCH] only mipsisa64* configs default to using MEABI


This patch now brings the gcc testsuite back into sync with the
gcc/gcc/config.gcc file, where only the mipsisa64* configs default to
using the MEABI.

Index: ChangeLog
===================================================================
RCS file: /mips/newtools/fsf/gcc/gcc/testsuite/ChangeLog,v
retrieving revision 1.5
diff -c -p -r1.5 ChangeLog
*** ChangeLog	2003/02/28 02:41:25	1.5
--- ChangeLog	2003/02/28 17:11:13
***************
*** 1,3 ****
--- 1,8 ----
+ 2003-02-28  Fred Fish  <fnf at intrinsity dot com>
+ 
+ 	* gcc.dg/special/mips-abi.exp (is_meabi_config): Only the isa64
+ 	configs default to using the MEABI.
+ 
  2003-02-26  Zdenek Dvorak  <rakdver at atrey dot karlin dot mff dot cuni dot cz>
  
  	* lib/scanasm.exp: Add support for counting numbers of
Index: gcc.dg/special/mips-abi.exp
===================================================================
RCS file: /mips/newtools/fsf/gcc/gcc/testsuite/gcc.dg/special/mips-abi.exp,v
retrieving revision 1.2
diff -c -p -r1.2 mips-abi.exp
*** gcc.dg/special/mips-abi.exp	2003/02/18 21:33:56	1.2
--- gcc.dg/special/mips-abi.exp	2003/02/28 17:11:13
*************** set asm_abi_flags {-32 -n32 -64 -mabi=o6
*** 31,39 ****
  
  # Return true if the configuration uses MEABI by default.
  proc is_meabi_config {} {
!     return [expr {[istarget mipsisa32*-*-elf*]
! 		  || [istarget mipsisa32el-*-elf*]
! 		  || [istarget mipsisa64-*-elf*]
  		  || [istarget mipsisa64el-*-elf*]
  		  || [istarget mipsisa64sr71k-*-elf*]}]
  }
--- 31,37 ----
  
  # Return true if the configuration uses MEABI by default.
  proc is_meabi_config {} {
!     return [expr {[istarget mipsisa64-*-elf*]
  		  || [istarget mipsisa64el-*-elf*]
  		  || [istarget mipsisa64sr71k-*-elf*]}]
  }


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