From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19607 invoked by alias); 21 Nov 2006 07:48:07 -0000 Received: (qmail 19558 invoked by uid 48); 21 Nov 2006 07:47:57 -0000 Date: Tue, 21 Nov 2006 07:48:00 -0000 Message-ID: <20061121074757.19556.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug tree-optimization/29922] gcc-4.3-20061118 failed to compile linux-2.6.19-rc6-git2 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-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2006-11/txt/msg01850.txt.bz2 List-Id: ------- Comment #7 from pinskia at gcc dot gnu dot org 2006-11-21 07:47 ------- Confirmed, reduced testcase: struct menu { struct menu *next; struct menu *list; }; char line[128]; int conf_choice(struct menu *menu) { struct menu *child; while (1) { for (child = menu->list; child; child = child->next) { if (menu_is_visible()) break; } if (!child) continue; if (strlen(line) == 100) { f(); continue; } return 1; } } -- pinskia at gcc dot gnu dot org changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |blocker Status|WAITING |NEW Ever Confirmed|0 |1 Last reconfirmed|0000-00-00 00:00:00 |2006-11-21 07:47:57 date| | Target Milestone|--- |4.3.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29922