This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/20786] Can't use AINT intrinsic with KIND parameter
- From: "jblomqvi at cc dot hut dot fi" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 11 Jun 2005 20:07:43 -0000
- Subject: [Bug fortran/20786] Can't use AINT intrinsic with KIND parameter
- References: <20050406095442.20786.fxcoudert@gcc.gnu.org>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From jblomqvi at cc dot hut dot fi 2005-06-11 20:07 -------
Actually, ANINT also exhibits the same problem:
implicit none
real(4) :: r = 42.7, r2
r2 = aint (r,kind=8)
print *, 'aint: ', r2
r2 = anint (r, kind=8)
print *, 'anint: ', r2
end
Prints out:
aint: 0.000000
anint: 0.000000
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20786