[Bug testsuite/82324] Problem in new trunk test case gfortran.dg/promotion_4.f90
jvdelisle at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Wed Sep 27 03:05:00 GMT 2017
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82324
Jerry DeLisle <jvdelisle at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jvdelisle at gcc dot gnu.org
--- Comment #6 from Jerry DeLisle <jvdelisle at gcc dot gnu.org> ---
A side note for folks. One can:
use iso_fortran_env
and then inquire about what kinds are supported with:
real_kinds or integer_kinds which are set to an array of values.
On my system here:
program quick
use iso_fortran_env
print *, real_kinds
end program
$ gfc quick.f90
$ ./a.out
4 8 10 16
On Raspberry pi (arm) is gives:
4 8
More information about the Gcc-bugs
mailing list