This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [Patch, fortran] PR25289 Cannot handle record numbers large than huge(0_4)
- From: "François-Xavier Coudert" <fxcoudert at gmail dot com>
- To: "Jerry DeLisle" <jvdelisle at verizon dot net>
- Cc: gcc-patches <gcc-patches at gcc dot gnu dot org>, fortran at gcc dot gnu dot org
- Date: Wed, 28 Jun 2006 09:23:45 +0200
- Subject: Re: [Patch, fortran] PR25289 Cannot handle record numbers large than huge(0_4)
- References: <A7E4CB800B73A2409E113012513E03944CDFA8@EX1V.rl.gov> <44A20047.1010202@verizon.net> <44A21FD8.4090706@gmail.com> <44A22C52.9040407@verizon.net>
int gfc_default_integer_kind;
int gfc_max_integer_kind;
+int gfc_large_integer_kind;
int gfc_default_real_kind;
int gfc_default_double_kind;
int gfc_default_character_kind;
Are not visible to trans-io.c where we need to use them.
Yes they are. Well, they already are all declared in gfortran.h,
excepted the newly proposed gfc_large_integer_kind. grep for
gfc_max_integer_kind in trans-io.c and you'll see it's used there.
FX