[Bug fortran/44489] Transfer with boz constant can confuse - add documentation

2014-03-16 Thread jvdelisle at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44489 Jerry DeLisle jvdelisle at gcc dot gnu.org changed: What|Removed |Added Status|NEW |RESOLVED

[Bug fortran/44489] Transfer with boz constant can confuse - add documentation

2013-09-04 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44489 Dominique d'Humieres dominiq at lps dot ens.fr changed: What|Removed |Added Status|UNCONFIRMED |NEW

[Bug fortran/44489] Transfer with boz constant can confuse - add documentation

2010-06-10 Thread kargl at gcc dot gnu dot org
--- Comment #4 from kargl at gcc dot gnu dot org 2010-06-10 06:31 --- (In reply to comment #3) The result of transfer is largest kind of decimal. Can be kind=8 or kind=16 depending on the system. Maybe we should add some documentation in the manual on this. Thanks Steve for

[Bug fortran/44489] Transfer with boz constant can confuse - add documentation

2010-06-10 Thread burnus at gcc dot gnu dot org
--- Comment #5 from burnus at gcc dot gnu dot org 2010-06-10 07:25 --- I think there is another problem. Assuming the following program: integer(4) :: i4 integer(8) :: i8 i4 = 1 i8 = transfer(i4, mold=i8) end The TRANSFER (as the one in comment 0) is partially undefined, but there is

[Bug fortran/44489] Transfer with boz constant can confuse - add documentation

2010-06-09 Thread jvdelisle at gcc dot gnu dot org
--- Comment #3 from jvdelisle at gcc dot gnu dot org 2010-06-10 05:21 --- The result of transfer is largest kind of decimal. Can be kind=8 or kind=16 depending on the system. Maybe we should add some documentation in the manual on this. Thanks Steve for pointing this out. --