diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 3d99ae35e70..c8301f659b7 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,8 @@ +2008-09-24 Tobias Burnus + + * options.c (set_default_std_flags,gfc_init_options): + Add comment: keep in sync with libgfortran. + 2008-09-24 Tobias Burnus PR fortran/37626 diff --git a/gcc/fortran/options.c b/gcc/fortran/options.c index 52174b3d187..e84b3b15370 100644 --- a/gcc/fortran/options.c +++ b/gcc/fortran/options.c @@ -37,7 +37,8 @@ gfc_option_t gfc_option; /* Set flags that control warnings and errors for different - Fortran standards to their default values. */ + Fortran standards to their default values. Keep in sync with + libgfortran/runtime/compile_options.c (init_compile_options). */ static void set_default_std_flags (void) @@ -48,7 +49,9 @@ set_default_std_flags (void) gfc_option.warn_std = GFC_STD_F95_DEL | GFC_STD_LEGACY; } -/* Get ready for options handling. */ + +/* Get ready for options handling. Keep in sync with + libgfortran/runtime/compile_options.c (init_compile_options). */ unsigned int gfc_init_options (unsigned int argc, const char **argv) diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index fff673d83f6..660be4329ea 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,8 @@ +2008-09-24 Tobias Burnus + + * runtime/compile_options.c (init_compile_options): + Sync flags with front end. + 2008-09-22 Jerry DeLisle