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/23654] internal compiler error: in gfc_conv_function_call


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-08-31 15:15 -------
Reduced testcase:
module problem
contains
  subroutine compare_words
    character(len=1), dimension(:), pointer :: word1
    call print_word(chararray2string(word1))
  end subroutine compare_words
  subroutine print_word(word1)
    character(len=*), intent(in) :: word1 ! input
  end subroutine print_word
  function chararray2string(chararray) result(text)
    character(len=1), dimension(:) :: chararray      ! input
    character(len=size(chararray)) :: text           ! output
  end function chararray2string
end module problem

Which means this is a dup of bug 15326.

*** This bug has been marked as a duplicate of 15326 ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |DUPLICATE


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


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