From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8859 invoked by alias); 21 Mar 2005 19:24:33 -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 8824 invoked by uid 48); 21 Mar 2005 19:24:30 -0000 Date: Mon, 21 Mar 2005 19:24:00 -0000 Message-ID: <20050321192430.8823.qmail@sourceware.org> From: "amylaar at gcc dot gnu dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20021113115600.8564.ron@vaniwaarden.org> References: <20021113115600.8564.ron@vaniwaarden.org> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug c++/8564] [3.2 regression] ICE in find_function_data, at function.c:329 X-Bugzilla-Reason: CC X-SW-Source: 2005-03/txt/msg02551.txt.bz2 List-Id: ------- Additional Comments From amylaar at gcc dot gnu dot org 2005-03-21 19:24 ------- (In reply to comment #7) > * init.c ... > (build_new_1): ... Use an incomplete array type for full_type. This change has caused PR c++/20427. The following variant of the reduced testcase also changed from ICE to wrong-code: struct A { static char* p; }; int i = 1; char* A::p = new char[i] (); void foo() {} -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8564