summaryrefslogtreecommitdiff
path: root/libgfortran/config/fpu-glibc.h
diff options
context:
space:
mode:
Diffstat (limited to 'libgfortran/config/fpu-glibc.h')
-rw-r--r--libgfortran/config/fpu-glibc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libgfortran/config/fpu-glibc.h b/libgfortran/config/fpu-glibc.h
index 669b7ad98c1..7bdb7b76af6 100644
--- a/libgfortran/config/fpu-glibc.h
+++ b/libgfortran/config/fpu-glibc.h
@@ -49,7 +49,7 @@ void set_fpu (void)
#ifdef FE_DENORMAL
feenableexcept (FE_DENORMAL);
#else
- estr_write ("Fortran runtime warning: IEEE 'denormal number' "
+ estr_write ("Fortran runtime warning: Floating point 'denormal operand' "
"exception not supported.\n");
#endif
@@ -77,11 +77,11 @@ void set_fpu (void)
"exception not supported.\n");
#endif
- if (options.fpe & GFC_FPE_PRECISION)
+ if (options.fpe & GFC_FPE_INEXACT)
#ifdef FE_INEXACT
feenableexcept (FE_INEXACT);
#else
- estr_write ("Fortran runtime warning: IEEE 'loss of precision' "
+ estr_write ("Fortran runtime warning: IEEE 'inexact' "
"exception not supported.\n");
#endif
}