From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22551 invoked by alias); 15 Aug 2006 05:59:04 -0000 Received: (qmail 22524 invoked by uid 48); 15 Aug 2006 05:58:54 -0000 Date: Tue, 15 Aug 2006 05:59:00 -0000 Message-ID: <20060815055854.22523.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug tree-optimization/26307] load PRE creates type mismatches 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-08/txt/msg01077.txt.bz2 List-Id: ------- Comment #2 from pinskia at gcc dot gnu dot org 2006-08-15 05:58 ------- That testcase no longer ICEs, PRE selects void* for the variable. Here is a testcase that currently does fail: int *automata_list_finish (void ** entry_ptr, int *current_automata_list) { if (*entry_ptr == ((void *)0)) *entry_ptr = (void *) current_automata_list; else free_automata_list (); return (int *) *entry_ptr; } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26307