[Bug fortran/66310] Problems with intrinsic repeat for large number of copies
jvdelisle at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Sat Mar 17 07:15:00 GMT 2018
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66310
--- Comment #20 from Jerry DeLisle <jvdelisle at gcc dot gnu.org> ---
(In reply to Dominique d'Humieres from comment #19)
> > Can this be closed.
>
> The problem is not fixed in 32-bit mode.
Dominique, what are you seeing? This is working fine with my system with -m32.
program p
character(kind=1), parameter :: z = 'z'
integer, parameter :: big = 536870911
!print *, repeat(z, huge(1_4)/4)
!print *, (huge(1)-1)/4, huge(1) - 1
print *, repeat(z, big)
end
More information about the Gcc-bugs
mailing list