From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20500 invoked by alias); 27 Sep 2006 21:31:47 -0000 Received: (qmail 20464 invoked by uid 48); 27 Sep 2006 21:31:38 -0000 Date: Wed, 27 Sep 2006 21:31:00 -0000 Message-ID: <20060927213138.20463.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug tree-optimization/29254] [4.2 Regression] verify_cgraph_node failed (inlined_to pointer is set but no predecessors found) In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "lopezibanez at gmail dot com" 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-09/txt/msg02597.txt.bz2 List-Id: ------- Comment #2 from lopezibanez at gmail dot com 2006-09-27 21:31 ------- Is this testcase better? ------------------------ list_compare (int * list1) { if (list1) value_compare (); } func1 (int * f){} value_compare (int * a) { if (a) list_compare (a); } func2 (const int * fb) { func1 ((int *) fb); } ---------------------------------- I was unable to reproduce the problem removing any of the 'if'. Also, I was unable to reproduce the ICE without generating the warning about qualifiers. Weird. -- lopezibanez at gmail dot com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lopezibanez at gmail dot com http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29254