------- Comment #1 from fxcoudert at gcc dot gnu dot org  2006-09-29 13:21 
-------
Assigning this to myself, as I have a patch cooking. A testcase is (on
i686-linux):

$ cat cdabs.f 
      subroutine foo(f)
      implicit none
      real*8 f
      complex*16 z

      z = (1.,1.)
      print *, f(z)
      end

      implicit none
      intrinsic cdabs
      call foo(cdabs)
      end
$ gfortran cdabs.f && ./a.out
                     NaN
$ gfortran cdabs.f -O3 && ./a.out
                     NaN
zsh: segmentation fault  ./a.out


-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|pbrook at gcc dot gnu dot   |fxcoudert at gcc dot gnu dot
                   |org                         |org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18791

Reply via email to