This is the mail archive of the
fortran@gcc.gnu.org
mailing list for the GNU Fortran 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)
- Domainkey-signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=bB9vxMGLCI6M5jSJfMZfhzc8630Ect19D7T28i0uA5jtfiI5k/p4ujQITx9wSvqxZ/bPtm8/hq6THG1jAIl0Wl0YEfijicRiAAelVF8eYHUS/toEaMHVv58leDAV+GbY1K+ZbmdtwYR+QeWprRQeF3yipZGjG1/cuK/iGf9u0Lc=
- 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