diff options
| author | saliu <saliu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-05-15 13:11:52 +0000 |
|---|---|---|
| committer | saliu <saliu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-05-15 13:11:52 +0000 |
| commit | e6fba9d7ce9d1a072d3934075fdcf6b076a3a160 (patch) | |
| tree | 1fceb6600092ede4ac096e649382281f1e2d661a | |
| parent | 09bdb5efc31264416e7534bea8a4a92cdd088b38 (diff) | |
| download | ppe42-gcc-e6fba9d7ce9d1a072d3934075fdcf6b076a3a160.tar.gz ppe42-gcc-e6fba9d7ce9d1a072d3934075fdcf6b076a3a160.zip | |
Add support to C binding with 128-bit integer.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@135349 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/fortran/ChangeLog | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index c39b86e25cf..c7e18e80139 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,23 @@ +2008-05-15 Sa Liu <saliu@de.ibm.com> + + * iso-c-binding.def: Add standard parameter to macro NAMED_INTCST. + All existing NAMED_INTCST definitions has standard GFC_STD_F2003, + c_int128_t, c_int_least128_t and c_int_fast128_t are added as + GNU extensions. + * iso-fortran-evn.def: Add standard parameter GFC_STD_F2003 + to macro NAMED_INTCST. + * symbol.c (std_for_isocbinding_symbol): New helper function to + return the standard that supports this isocbinding symbol. + (generate_isocbinding_symbol): Do not generate GNU extension symbols + if std=f2003. Add new parameter to NAMED_INTCST. + * module.c (use_iso_fortran_env_module): Add new parameter to + NAMED_INTCST and new field standard to struct intmod_sym. + * gfortran.h: Add new parameter to NAMED_INTCST. + * trans-types.c (init_c_interop_kinds): Add new parameter to + NAMED_INTCST. + * intrinsic.texi: Documented new types C_INT128_T, C_INT_LEASE128_T + and C_INT_FAST128_T. + 2008-05-14 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> PR fortran/36059 |

