This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug fortran/54730] [4.6/4.7/4.8 Regression] ICE in gfc_typenode_for_spec, at fortran/trans-types.c:1066


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

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tkoenig at gcc dot gnu.org

--- Comment #6 from Thomas Koenig <tkoenig at gcc dot gnu.org> 2012-10-21 19:23:39 UTC ---
Even shorter test case:

program main
  implicit none
  intrinsic :: real
  print *,(/ real(a = 1) /)
end

The problem appears to be that we try to build a backend decl
for a, which doesn't really make a lot of sense.  We do fine
without one for the

program main
  implicit none
  intrinsic :: real
  print *,(/ real(1) /)
end

case.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]