[Bug libfortran/27652] Array output does not self wrap

2006-05-17 Thread jvdelisle at gcc dot gnu dot org
--- Comment #6 from jvdelisle at gcc dot gnu dot org 2006-05-18 05:16 --- Oops, I forgot the period. You need to match the width and precsion you want printed. For complex maybe you want to use 6 or 8 instead of the 5 for repeat count. print "(5(f10.4))", a -- http://gcc.gnu.org

[Bug libfortran/27652] Array output does not self wrap

2006-05-17 Thread jvdelisle at gcc dot gnu dot org
--- Comment #5 from jvdelisle at gcc dot gnu dot org 2006-05-18 05:10 --- also do something like this: print "(5(f10))", a you will get a new line after every 5 values printed. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27652

[Bug libfortran/27652] Array output does not self wrap

2006-05-17 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2006-05-18 04:59 --- redirect the output to a file and then read the file with a real editor. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug libfortran/27652] Array output does not self wrap

2006-05-17 Thread hjl at lucon dot org
--- Comment #3 from hjl at lucon dot org 2006-05-18 04:56 --- The testcase only have 20 elements of 0. The real array has more than 800 elements of complex with different values. I am debugging a gfortran bug. Since gdb isn't really useful, I am using "print *," to see what are in the ar

[Bug libfortran/27652] Array output does not self wrap

2006-05-17 Thread jvdelisle at gcc dot gnu dot org
--- Comment #2 from jvdelisle at gcc dot gnu dot org 2006-05-18 03:49 --- [EMAIL PROTECTED] pr27652]$ ./a.out 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

[Bug libfortran/27652] Array output does not self wrap

2006-05-17 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-05-18 01:09 --- I don't see that much problem with it. It just is not wrapped (the wrapping you are seeing is wrapping done by your termainal and not gfortran/libgfortran). -- pinskia at gcc dot gnu dot org changed: