aboutsummaryrefslogtreecommitdiff
path: root/libgfortran/runtime
diff options
context:
space:
mode:
authorTobias Burnus <burnus@net-b.de>2008-09-24 09:08:22 +0200
committerTobias Burnus <burnus@gcc.gnu.org>2008-09-24 09:08:22 +0200
commit5fb41e29c618d963914e53c0b364c7717b47ac40 (patch)
tree657ede36df28bcb24c2fbd9d883065585bf5de4f /libgfortran/runtime
parenta9b98c2c559e553035ca5115cd0cbb9f2c32dab0 (diff)
downloadgcc-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 'libgfortran/runtime')
-rw-r--r--libgfortran/runtime/compile_options.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libgfortran/runtime/compile_options.c b/libgfortran/runtime/compile_options.c
index c62fe1c..2c0a945 100644
--- a/libgfortran/runtime/compile_options.c
+++ b/libgfortran/runtime/compile_options.c
@@ -140,10 +140,10 @@ set_options (int num, int options[])
void
init_compile_options (void)
{
- compile_options.warn_std = GFC_STD_F95_OBS | GFC_STD_F95_DEL
- | GFC_STD_F2003 | GFC_STD_LEGACY;
+ compile_options.warn_std = GFC_STD_F95_DEL | GFC_STD_LEGACY;
compile_options.allow_std = GFC_STD_F95_OBS | GFC_STD_F95_DEL
- | GFC_STD_F2003 | GFC_STD_F95 | GFC_STD_F77 | GFC_STD_GNU | GFC_STD_LEGACY;
+ | GFC_STD_F2003 | GFC_STD_F2008 | GFC_STD_F95 | GFC_STD_F77
+ | GFC_STD_GNU | GFC_STD_LEGACY;
compile_options.pedantic = 0;
compile_options.dump_core = 0;
compile_options.backtrace = 0;