From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31217 invoked by alias); 22 Feb 2007 19:05:01 -0000 Received: (qmail 31181 invoked by uid 48); 22 Feb 2007 19:04:49 -0000 Date: Thu, 22 Feb 2007 19:05:00 -0000 Message-ID: <20070222190449.31180.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug middle-end/30864] [4.3 Regression] ice for legal code with -O2 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-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2007-02/txt/msg02592.txt.bz2 ------- Comment #4 from pinskia at gcc dot gnu dot org 2007-02-22 19:04 ------- Reduced testcase: struct QString { ~QString(); }; template struct QValueListNode { QValueListNode* next; T data; }; template struct QValueListPrivate { ~QValueListPrivate() { QValueListNode* p = node->next; while( p != node ) { QValueListNode* x = p->next; delete p; p = x; } } QValueListNode* node; }; struct Option { QString sarg; }; struct Options { QString helptext; QValueListPrivate filelist; QValueListPrivate