From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32016 invoked by alias); 12 May 2004 13:07:20 -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 31999 invoked by uid 48); 12 May 2004 13:07:19 -0000 Date: Thu, 13 May 2004 00:51:00 -0000 Message-ID: <20040512130719.31998.qmail@sourceware.org> From: "pinskia at gcc dot gnu dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20040511202027.15385.bangerth@dealii.org> References: <20040511202027.15385.bangerth@dealii.org> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug optimization/15385] [3.5 regression] ICE in spill_failure X-Bugzilla-Reason: CC X-SW-Source: 2004-05/txt/msg01134.txt.bz2 List-Id: ------- Additional Comments From pinskia at gcc dot gnu dot org 2004-05-12 13:07 ------- Here is another sample of what is ICEing (derived from the tree-ssa's tree dump): int foo(); void bar (double d) { int i; int n; n = foo (); if (d == 0.0) goto L6; else goto L3; L6:; if (n > 0) goto L13; else goto L3; L13:; i = 0; L1:; i = i + 1; if (i < n) goto L1; else goto L3; L3:; return; } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15385