diff options
author | Steven G. Kargl <kargls@comcast.net> | 2005-03-30 00:30:51 +0000 |
---|---|---|
committer | Steven G. Kargl <kargl@gcc.gnu.org> | 2005-03-30 00:30:51 +0000 |
commit | 3ae9eb270ae75ceb7aa29752ef3a85210b7ab52c (patch) | |
tree | 003a9d206b4993a10d1804380e5cc1a02e1d8501 /gcc/fortran/lang.opt | |
parent | 15cc18411d3efef1544696e31833e93f79506cf4 (diff) | |
download | gcc-3ae9eb270ae75ceb7aa29752ef3a85210b7ab52c.zip gcc-3ae9eb270ae75ceb7aa29752ef3a85210b7ab52c.tar.gz gcc-3ae9eb270ae75ceb7aa29752ef3a85210b7ab52c.tar.bz2 |
gfortran.h (option_t): Change d8, i8, r8 to flag_default_double, flag_default_integer, flag_default_real
* gfortran.h (option_t): Change d8, i8, r8 to flag_default_double,
flag_default_integer, flag_default_real
* invoke.texi: Update documentation
* lang.opt: Remove d8, i8, r8 definitions; Add fdefault-double-8
fdefault-integer-8, and fdefault-real-8 definitions.
* options.c (gfc_init_options): Set option defaults
(gfc_handle_option): Handle command line options.
* trans-types.c (gfc_init_kinds): Use options.
From-SVN: r97221
Diffstat (limited to 'gcc/fortran/lang.opt')
-rw-r--r-- | gcc/fortran/lang.opt | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/gcc/fortran/lang.opt b/gcc/fortran/lang.opt index 976a2b4..bde1d75 100644 --- a/gcc/fortran/lang.opt +++ b/gcc/fortran/lang.opt @@ -69,9 +69,17 @@ Wunused-labels F95 Warn when a label is unused -d8 -F95 RejectNegative -Set the default real and integer kinds to double precision +fdefault-double-8 +F95 +Set the default double precision kind to an 8 byte wide type + +fdefault-integer-8 +F95 +Set the default integer kind to an 8 byte wide type + +fdefault-real-8 +F95 +Set the default real kind to an 8 byte wide type fdollar-ok F95 @@ -133,18 +141,10 @@ frepack-arrays F95 Copy array sections into a contiguous block on procedure entry -i8 -F95 -Set the default integer kind to double precision - qkind= F95 RejectNegative Joined UInteger -qkind=<n> Set the kind for a real with the 'q' exponent to 'n' -r8 -F95 -Set the default real kind to double precision - std=f95 F95 Conform to the ISO Fortran 95 standard. |