From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11652 invoked by alias); 29 Aug 2005 16:10:25 -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 11537 invoked by uid 48); 29 Aug 2005 16:10:18 -0000 Date: Mon, 29 Aug 2005 16:12:00 -0000 Message-ID: <20050829161018.11536.qmail@sourceware.org> From: "pinskia at gcc dot gnu dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20050829152416.23625.micis@gmx.de> References: <20050829152416.23625.micis@gmx.de> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug tree-optimization/23625] [4.1 Regression] ICE: in bsi_after_labels, at tree-flow-inline.h:758 X-Bugzilla-Reason: CC X-SW-Source: 2005-08/txt/msg03339.txt.bz2 List-Id: ------- Additional Comments From pinskia at gcc dot gnu dot org 2005-08-29 16:10 ------- Confirmed, reduced testcase: typedef long INT32; void find_best_colors () { int ic0, ic1, ic2; INT32 * bptr; INT32 dist1; INT32 dist2; INT32 xx1; for (ic0 = (1<<(5 -3))-1;ic0 >= 0;ic0--) { for (ic1 = (1<<(6 -3))-1;ic1 >= 0;ic1--) { dist2 = dist1; for (ic2 = (1<<(5 -3))-1;ic2 >= 0;ic2--) { *bptr = dist2; bptr++; } dist1 += xx1; } } } -- What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed| |1 Last reconfirmed|0000-00-00 00:00:00 |2005-08-29 16:10:14 date| | http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23625