From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9713 invoked by alias); 9 Apr 2006 10:10:55 -0000 Received: (qmail 9691 invoked by uid 48); 9 Apr 2006 10:10:53 -0000 Date: Sun, 09 Apr 2006 10:10:00 -0000 Message-ID: <20060409101053.9690.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug tree-optimization/27085] [4.2 regression] ICE in add_virtual_operand In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "debian-gcc at lists dot debian 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-04/txt/msg00720.txt.bz2 List-Id: ------- Comment #1 from debian-gcc at lists dot debian dot org 2006-04-09 10:10 ------- Seems to occur quite frequently, here's another test case: struct GdkColor { unsigned long pixel; unsigned short red; }; struct GtkStyle { struct GdkColor bg; }; struct GtkStyle *gtk_style_new (void); void pthreada_create(unsigned long *); void start_synaescope(void) { unsigned long synaescope_thread; struct GtkStyle *style = gtk_style_new(); struct GdkColor *color = &style->bg; color->red = 0; pthreada_create(&synaescope_thread); } Falk -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27085