[Bug fortran/27652] New: Array list-directed output isn't human friendly
hjl at lucon dot org
gcc-bugzilla@gcc.gnu.org
Thu May 18 00:59:00 GMT 2006
[hjl@gnu-19 tmp]$ cat x.f90
program foo
integer, dimension (1:20):: a
a= 0
print *,a
end
[hjl@gnu-19 tmp]$ /usr/gcc-4.2/bin/gfortran -static x.f90
[hjl@gnu-19 tmp]$ ./a.out
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0
[hjl@gnu-19 tmp]$ /opt/intel/fc/9.0/bin/ifort x.f90
[hjl@gnu-19 tmp]$ ./a.out
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0
[hjl@gnu-19 tmp]$
--
Summary: Array list-directed output isn't human friendly
Product: gcc
Version: 4.2.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: fortran
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: hjl at lucon dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27652
More information about the Gcc-bugs
mailing list