* options.c (gfc_init_options): Zero flag_errno_math.
authorRichard Henderson <rth@redhat.com>
Sun, 30 Jan 2005 18:34:03 +0000 (10:34 -0800)
committerRichard Henderson <rth@gcc.gnu.org>
Sun, 30 Jan 2005 18:34:03 +0000 (10:34 -0800)
From-SVN: r94447

gcc/fortran/ChangeLog
gcc/fortran/options.c

index 94a163941a1c347d6cc937812eca07e4cc7a00df..707ab1b8631f6ab6c02da9efcdf852d15b766e9c 100644 (file)
@@ -1,3 +1,7 @@
+2006-01-30  Richard Henderson  <rth@redhat.com>
+
+       * options.c (gfc_init_options): Zero flag_errno_math.
+
 2005-01-29  Paul Brook  <paul@codesourcery.com>
 
        PR fortran/18565
index 06c643d102f9e14c7e5baa6f3e3c6d9caac4f5af..359640037859eea44d7e0c5ac0406aa5eeea9d8c 100644 (file)
@@ -42,7 +42,6 @@ unsigned int
 gfc_init_options (unsigned int argc ATTRIBUTE_UNUSED,
                  const char **argv ATTRIBUTE_UNUSED)
 {
-
   gfc_option.source = NULL;
   gfc_option.module_dir = NULL;
   gfc_option.source_form = FORM_UNKNOWN;
@@ -74,6 +73,7 @@ gfc_init_options (unsigned int argc ATTRIBUTE_UNUSED,
   gfc_option.d8 = 0;
 
   flag_argument_noalias = 2;
+  flag_errno_math = 0;
 
   gfc_option.allow_std = GFC_STD_F95_OBS | GFC_STD_F95_DEL
     | GFC_STD_F2003 | GFC_STD_F95 | GFC_STD_F77 | GFC_STD_GNU;