From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5408 invoked by alias); 13 Oct 2006 08:22:55 -0000 Received: (qmail 5059 invoked by uid 48); 13 Oct 2006 08:22:43 -0000 Date: Fri, 13 Oct 2006 08:22:00 -0000 Message-ID: <20061013082243.5058.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug tree-optimization/29446] [4.2 Regression] VRP ICE in compare_names In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "rguenth at gcc dot gnu dot org" 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 X-SW-Source: 2006-10/txt/msg01099.txt.bz2 List-Id: ------- Comment #3 from rguenth at gcc dot gnu dot org 2006-10-13 08:22 ------- Slightly less undefined, ICEs with -O -ftree-vrp -funswitch-loops: void f(_Bool D917, int j0, int ubound1, int ubound5) { int i, j = j0; int (*abc)[3]; i = 1; while (1) { if (j <= 3) while (1) { if (i != j) { if (ubound1 <= 0) return; (*abc)[1] = 0; } else { if (j > ubound1) return; if (ubound5 <= 0) return; } j = j + 1; if (D917) break; } i = i + 1; } } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29446