[Bug fortran/20120] real(kind=16) and sqrt function cause ICE

2005-04-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-04-11 21:01 --- *** Bug 20956 has been marked as a duplicate of this bug. *** -- What|Removed |Added

[Bug fortran/20120] real(kind=16) and sqrt function cause ICE in print statement

2005-02-21 Thread coudert at clipper dot ens dot fr
--- Additional Comments From coudert at clipper dot ens dot fr 2005-02-21 14:21 --- Same happens with kind=10 on i686-linux-gnu: real(10) :: a, b b = sqrt(a) end >From gfc_get_intrinsic_lib_fndecl: if (ts->type == BT_REAL) { switch (ts->kind) { case 4:

[Bug fortran/20120] real(kind=16) and sqrt function cause ICE in print statement

2005-02-21 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-02-21 14:11 --- Confirmed, another testcase (without print): real(16) :: a real(16) :: b b = sqrt(a) end -- What|Removed |Added --