diff options
author | Tobias Burnus <burnus@net-b.de> | 2008-09-24 09:08:22 +0200 |
---|---|---|
committer | Tobias Burnus <burnus@gcc.gnu.org> | 2008-09-24 09:08:22 +0200 |
commit | 5fb41e29c618d963914e53c0b364c7717b47ac40 (patch) | |
tree | 657ede36df28bcb24c2fbd9d883065585bf5de4f /gcc/fortran/options.c | |
parent | a9b98c2c559e553035ca5115cd0cbb9f2c32dab0 (diff) | |
download | gcc-5fb41e29c618d963914e53c0b364c7717b47ac40.zip gcc-5fb41e29c618d963914e53c0b364c7717b47ac40.tar.gz gcc-5fb41e29c618d963914e53c0b364c7717b47ac40.tar.bz2 |
options.c (set_default_std_flags,gfc_init_options): Add comment: keep in sync with libgfortran.
2008-09-24 Tobias Burnus <burnus@net-b.de>
* options.c (set_default_std_flags,gfc_init_options):
Add comment: keep in sync with libgfortran.
2008-09-24 Tobias Burnus <burnus@net-b.de>
* runtime/compile_options.c (init_compile_options):
Sync flags with front end.
From-SVN: r140625
Diffstat (limited to 'gcc/fortran/options.c')
-rw-r--r-- | gcc/fortran/options.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/fortran/options.c b/gcc/fortran/options.c index 52174b3..e84b3b1 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) |