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]

patch for mn10200 float.h



mn10200 toolchains have a float.h that says "double" is 64 bits, when in
fact mn10200's have 32-bit "double". The problem is that we forgot to tell
configure.in which flavor of float.h to use (we have 8). The following
change affects (only) the selection of a "float.h".

gcc/configure has to be re-generated from configure.in, to pick up the
change.

This patch has been reviewed by Jeff Law.


Index: configure.in
===================================================================
RCS file: /cvs/cvsfiles/devo/gcc/configure.in,v
retrieving revision 1.278.2.8
diff -p -r1.278.2.8 configure.in
*** configure.in	1999/09/01 08:25:05	1.278.2.8
--- configure.in	1999/12/17 20:52:55
*************** changequote([,])dnl
*** 2648,2653 ****
--- 2648,2654 ----
  		fi
  		;;
  	mn10200-*-*)
+ 		float_format=i32
  		cpu_type=mn10200
  		tm_file="mn10200/mn10200.h"
  		if test x$stabs = xyes




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