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] S/390: Make enable-decimal-float the default


Hi,

enable-decimal-float is currently not enabled by default for s390(x).
Fixed with the attached patch.

Ok for mainline and 4.4?

Bye,

-Andreas-

2010-02-23  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>

	* configure.ac: Make enable-decimal-float the default for s390 and
	s390x.
	* configure: Regenerated.

Index: gcc/configure
===================================================================
--- gcc/configure	(revision 156958)
+++ gcc/configure	(working copy)
@@ -6651,7 +6651,7 @@
 else
 
   case $target in
-    powerpc*-*-linux* | i?86*-*-linux* | x86_64*-*-linux*)
+    powerpc*-*-linux* | i?86*-*-linux* | x86_64*-*-linux* | s390*-*-linux* )
       enable_decimal_float=yes
       ;;
     *)
Index: gcc/configure.ac
===================================================================
--- gcc/configure.ac	(revision 156958)
+++ gcc/configure.ac	(working copy)
@@ -620,7 +620,7 @@
 ],
 [
   case $target in
-    powerpc*-*-linux* | i?86*-*-linux* | x86_64*-*-linux*)
+    powerpc*-*-linux* | i?86*-*-linux* | x86_64*-*-linux* | s390*-*-linux* )
       enable_decimal_float=yes
       ;;
     *)


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