]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libgfortran/config/fpu-generic.h
Update copyright years.
[thirdparty/gcc.git] / libgfortran / config / fpu-generic.h
index 3ad0e8320554e3b5fc35aca675a5baa2a4c3ed39..0c350bc65ac849356b61d4f2267345b477409b6b 100644 (file)
@@ -1,5 +1,5 @@
 /* Fallback FPU-related code (for systems not otherwise supported).
-   Copyright (C) 2005-2013 Free Software Foundation, Inc.
+   Copyright (C) 2005-2020 Free Software Foundation, Inc.
    Contributed by Francois-Xavier Coudert <coudert@clipper.ens.fr>
 
 This file is part of the GNU Fortran runtime library (libgfortran).
@@ -51,6 +51,12 @@ set_fpu (void)
                "exception not supported.\n");
 }
 
+void
+set_fpu_trap_exceptions (int trap __attribute__((unused)),
+                        int notrap __attribute__((unused)))
+{
+}
+
 int
 get_fpu_except_flags (void)
 {
@@ -69,3 +75,24 @@ void
 set_fpu_rounding_mode (int round __attribute__((unused)))
 {
 }
+
+
+int
+support_fpu_underflow_control (int kind __attribute__((unused)))
+{
+  return 0;
+}
+
+
+int
+get_fpu_underflow_mode (void)
+{
+  return 0;
+}
+
+
+void
+set_fpu_underflow_mode (int gradual __attribute__((unused)))
+{
+}
+