From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25013 invoked by alias); 22 May 2007 10:11:37 -0000 Received: (qmail 24671 invoked by uid 48); 22 May 2007 10:11:22 -0000 Date: Tue, 22 May 2007 10:11:00 -0000 Message-ID: <20070522101122.24670.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug middle-end/32033] [4.3 Regression] ICE in fold_comparison, at fold-const.c:8531 at -O3 In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "tbm at cyrius dot com" 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-05/txt/msg01832.txt.bz2 ------- Comment #1 from tbm at cyrius dot com 2007-05-22 11:11 ------- Reduced testcase: 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=32033