From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4154 invoked by alias); 14 Oct 2006 08:46:31 -0000 Received: (qmail 4054 invoked by uid 48); 14 Oct 2006 08:46:23 -0000 Date: Sat, 14 Oct 2006 08:46:00 -0000 Message-ID: <20061014084623.4053.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug fortran/29267] ICE in operand_subword_force, at emit-rtl.c:1353 In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "franke dot daniel at gmail dot com" 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 X-SW-Source: 2006-10/txt/msg01202.txt.bz2 List-Id: ------- Comment #10 from franke dot daniel at gmail dot com 2006-10-14 08:46 ------- Don't know whether it makes any difference - but if it is the array constructor that crashes because of unequal string lengths within its arguments, why is there no problem with this code? PROGRAM test_constructor CHARACTER(len=32), DIMENSION(1,2) :: a a = reshape((/ "one arg", "another arg" /), (/ 1, 2 /)) END PROGRAM (Also compare with #3) -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29267