From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 607 invoked by alias); 18 Jan 2004 21:07:30 -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 599 invoked by uid 48); 18 Jan 2004 21:07:30 -0000 Date: Sun, 18 Jan 2004 21:07:00 -0000 Message-ID: <20040118210730.596.qmail@sources.redhat.com> From: "pinskia at gcc dot gnu dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20040118205152.13732.sylvain@gplservice.fr> References: <20040118205152.13732.sylvain@gplservice.fr> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug c/13732] internal compiler error with structures with VLAs and functions inside functions X-Bugzilla-Reason: CC X-SW-Source: 2004-01/txt/msg02138.txt.bz2 List-Id: ------- Additional Comments From pinskia at gcc dot gnu dot org 2004-01-18 21:07 ------- Note to get this ICEing on the tree-ssa (at -O2 or higher or using -funit-at-a-time) the following testcase is needed: int algo_fourmis (int nombre_points) { typedef struct { char bann_list[nombre_points]; } fourmi; int creation_fourmi (int nombre_points) { return sizeof (fourmi); } return creation_fourmi(nombre_points); } -- What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-valid-code Summary|internal compiler error with|internal compiler error with |structures |structures with VLAs and | |functions inside functions http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13732