From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9950 invoked by alias); 19 Aug 2007 19:07:51 -0000 Received: (qmail 7231 invoked by uid 48); 19 Aug 2007 19:07:36 -0000 Date: Sun, 19 Aug 2007 19:07:00 -0000 Message-ID: <20070819190736.7230.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug tree-optimization/30564] [4.3 Regression] ice for legal code with -O3 In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "pinskia at gcc dot gnu dot org" Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2007-08/txt/msg01281.txt.bz2 ------- Comment #14 from pinskia at gcc dot gnu dot org 2007-08-19 19:07 ------- The testcases here don't crash anymore but the one from PR 32033 does: static int spready[] = { }; void explosion_map (int y) { for (int i = 0; i < 4; i++) if (y * spready[i] < 0) break; } void explosion (void) { explosion_map (0); for (int i = 0; i < 2; i++) continue; } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30564