diff mbox

[Fortran] Print floating-point exception status after STOP/ERROR STOP

Message ID 51C80599.7070108@net-b.de
State New
Headers show

Commit Message

Tobias Burnus June 24, 2013, 8:38 a.m. UTC
Eric, Gerald, all,

I have now committed (Rev. 200360) the attached patch. (Compared to the 
draft patch, with a missing "," added in AC_CHECK_TYPES).

Eric, Gerald: Can you confirm that it now works on both FreeBSD and Solaris?

Eric: Should one (conditionally) include <floatingpoint.h> on Solaris? I 
am asking because LIBGFOR_CHECK_FPSETMASK in acinclude.m4 uses that 
include file during configure - but libgfortran.h (or config/fpu-sysv.h) 
don't.

Tobias

Comments

Eric Botcazou June 24, 2013, 5:41 p.m. UTC | #1
> Eric, Gerald: Can you confirm that it now works on both FreeBSD and Solaris?

It works fine on Solaris, thanks!

> Eric: Should one (conditionally) include <floatingpoint.h> on Solaris? I
> am asking because LIBGFOR_CHECK_FPSETMASK in acinclude.m4 uses that
> include file during configure - but libgfortran.h (or config/fpu-sysv.h)
> don't.

ieeefp.h is sufficient on Solaris.
Gerald Pfeifer June 24, 2013, 8:43 p.m. UTC | #2
On Mon, 24 Jun 2013, Tobias Burnus wrote:
> I have now committed (Rev. 200360) the attached patch. (Compared to the 
> draft patch, with a missing "," added in AC_CHECK_TYPES).
> 
> Eric, Gerald: Can you confirm that it now works on both FreeBSD and Solaris?

I can confirm FreeBSD 8.x and 10.x.  Thanks, Tobias!

Gerald
diff mbox

Patch

Index: libgfortran/ChangeLog
===================================================================
--- libgfortran/ChangeLog	(Revision 200359)
+++ libgfortran/ChangeLog	(Arbeitskopie)
@@ -1,3 +1,10 @@ 
+2013-06-24  Tobias Burnus  <burnus@net-b.de>
+
+	* configure.ac: Check for fp_except and fp_except_t.
+	* config/fpu-sysv.h: Conditionally use either type.
+	* configure: Regenerate.
+	* config.h.in: Regenerate.
+
 2013-06-21  Eric Botcazou  <ebotcazou@adacore.com>
 
 	* config/fpu-sysv.h (get_fpu_except_flags): Fix typo.
Index: libgfortran/config/fpu-sysv.h
===================================================================
--- libgfortran/config/fpu-sysv.h	(Revision 200359)
+++ libgfortran/config/fpu-sysv.h	(Arbeitskopie)
@@ -85,7 +85,13 @@  int
 get_fpu_except_flags (void)
 {
   int result;
+#if HAVE_FP_EXCEPT
   fp_except set_excepts;
+#elif HAVE_FP_EXCEPT_T
+  fp_except_t set_excepts;
+#else
+  choke me
+#endif
 
   result = 0;
   set_excepts = fpgetsticky ();
Index: libgfortran/config.h.in
===================================================================
--- libgfortran/config.h.in	(Revision 200359)
+++ libgfortran/config.h.in	(Arbeitskopie)
@@ -405,6 +405,12 @@ 
 /* fp_enable is present */
 #undef HAVE_FP_ENABLE
 
+/* Define to 1 if the system has the type `fp_except'. */
+#undef HAVE_FP_EXCEPT
+
+/* Define to 1 if the system has the type `fp_except_t'. */
+#undef HAVE_FP_EXCEPT_T
+
 /* fp_trap is present */
 #undef HAVE_FP_TRAP
 
Index: libgfortran/configure
===================================================================
--- libgfortran/configure	(Revision 200359)
+++ libgfortran/configure	(Arbeitskopie)
@@ -25977,7 +25977,28 @@  $as_echo "#define HAVE_FPSETMASK 1" >>confdefs.h
 
   fi
 
+ac_fn_c_check_type "$LINENO" "fp_except" "ac_cv_type_fp_except" "#include <ieeefp.h>
+"
+if test "x$ac_cv_type_fp_except" = x""yes; then :
 
+cat >>confdefs.h <<_ACEOF
+#define HAVE_FP_EXCEPT 1
+_ACEOF
+
+
+fi
+ac_fn_c_check_type "$LINENO" "fp_except_t" "ac_cv_type_fp_except_t" "#include <ieeefp.h>
+"
+if test "x$ac_cv_type_fp_except_t" = x""yes; then :
+
+cat >>confdefs.h <<_ACEOF
+#define HAVE_FP_EXCEPT_T 1
+_ACEOF
+
+
+fi
+
+
 # Check for AIX fp_trap and fp_enable
 ac_fn_c_check_func "$LINENO" "fp_trap" "ac_cv_func_fp_trap"
 if test "x$ac_cv_func_fp_trap" = x""yes; then :
Index: libgfortran/configure.ac
===================================================================
--- libgfortran/configure.ac	(Revision 200359)
+++ libgfortran/configure.ac	(Arbeitskopie)
@@ -498,6 +498,7 @@  fi
 
 # Check for SysV fpsetmask
 LIBGFOR_CHECK_FPSETMASK
+AC_CHECK_TYPES([fp_except,fp_except_t], [], [], [[#include <ieeefp.h>]])
 
 # Check for AIX fp_trap and fp_enable
 AC_CHECK_FUNC([fp_trap],[have_fp_trap=yes AC_DEFINE([HAVE_FP_TRAP],[1],[fp_trap is present])])