This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/23654] internal compiler error: in gfc_conv_function_call
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 31 Aug 2005 15:15:19 -0000
- Subject: [Bug fortran/23654] internal compiler error: in gfc_conv_function_call
- References: <20050831142105.23654.kloedej@knmi.nl>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- 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