[gcc/devel/ranger] Patch ieee128-lib-patch007b

Aldy Hernandez aldyh@gcc.gnu.org
Wed Jun 17 21:04:14 GMT 2020


https://gcc.gnu.org/g:db23381603d9725b120bbfdb8d67f79ad62a3033

commit db23381603d9725b120bbfdb8d67f79ad62a3033
Author: Michael Meissner <Michael Meissner meissner@linux.ibm.com>
Date:   Tue May 5 13:37:28 2020 -0400

    Patch ieee128-lib-patch007b

Diff:
---
 gcc/ChangeLog.meissner       |  7 +++++++
 gcc/config/rs6000/rs6000-c.c | 18 +++++++++++++-----
 2 files changed, 20 insertions(+), 5 deletions(-)

diff --git a/gcc/ChangeLog.meissner b/gcc/ChangeLog.meissner
index 4de6d61d555..31ecbb7e958 100644
--- a/gcc/ChangeLog.meissner
+++ b/gcc/ChangeLog.meissner
@@ -1,3 +1,10 @@
+2020-05-05  Michael Meissner  <meissner@linux.ibm.com>
+
+	(ieee128-lib-patch007b)
+	* config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Map all of
+	the special f128 constant builtins to the long double version if
+	long double is IEEE 128-bit.
+
 2020-05-05  Michael Meissner  <meissner@linux.ibm.com>
 
 	(ieee128-lib-patch005b)
diff --git a/gcc/config/rs6000/rs6000-c.c b/gcc/config/rs6000/rs6000-c.c
index 206230a290d..c0499be890f 100644
--- a/gcc/config/rs6000/rs6000-c.c
+++ b/gcc/config/rs6000/rs6000-c.c
@@ -675,13 +675,15 @@ rs6000_cpu_cpp_builtins (cpp_reader *pfile)
       builtin_define ("__builtin_vsx_xvnmsubmsp=__builtin_vsx_xvnmsubsp");
     }
 
-  /* Map the old _Float128 'q' builtins into the new 'f128' builtins.  However,
-     if long double is IEEE 128-bit, map the built-in functions to the normal
-     long double version.  In addition, if the default long double type is
-     IEEE, the nans builtins seem to generate the normal nan builtin value.  */
+  /* Map the old _Float128 'q' builtins into the new 'f128' builtins if long
+     double is IBM or 64-bit.
+
+     However, if long double is IEEE 128-bit, map both sets of built-in
+     functions to the normal long double version.  This shows up in nansf128
+     vs. nanf128.  */
   if (TARGET_FLOAT128_TYPE)
     {
-      if (TARGET_IEEEQUAD && TARGET_LONG_DOUBLE_128)
+      if (FLOAT128_IEEE_P (TFmode))
 	{
 	  builtin_define ("__builtin_fabsq=__builtin_fabsl");
 	  builtin_define ("__builtin_copysignq=__builtin_copysignl");
@@ -689,7 +691,13 @@ rs6000_cpu_cpp_builtins (cpp_reader *pfile)
 	  builtin_define ("__builtin_nansq=__builtin_nansl");
 	  builtin_define ("__builtin_infq=__builtin_infl");
 	  builtin_define ("__builtin_huge_valq=__builtin_huge_vall");
+
+	  builtin_define ("__builtin_fabsf128=__builtin_fabsl");
+	  builtin_define ("__builtin_copysignf128=__builtin_copysignl");
+	  builtin_define ("__builtin_nanf128=__builtin_nanl");
 	  builtin_define ("__builtin_nansf128=__builtin_nansl");
+	  builtin_define ("__builtin_inff128=__builtin_infl");
+	  builtin_define ("__builtin_huge_valf128=__builtin_huge_vall");
 	}
       else
 	{


More information about the Gcc-cvs mailing list