From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3626 invoked by alias); 31 Aug 2005 15:15:26 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 3568 invoked by uid 48); 31 Aug 2005 15:15:19 -0000 Date: Wed, 31 Aug 2005 15:15:00 -0000 Message-ID: <20050831151519.3566.qmail@sourceware.org> From: "pinskia at gcc dot gnu dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20050831142105.23654.kloedej@knmi.nl> References: <20050831142105.23654.kloedej@knmi.nl> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug fortran/23654] internal compiler error: in gfc_conv_function_call X-Bugzilla-Reason: CC X-SW-Source: 2005-08/txt/msg03602.txt.bz2 List-Id: ------- 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