From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27896 invoked by alias); 9 Mar 2007 08:31:02 -0000 Received: (qmail 27871 invoked by uid 48); 9 Mar 2007 08:30:52 -0000 Date: Fri, 09 Mar 2007 08:31:00 -0000 Message-ID: <20070309083052.27870.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug tree-optimization/31095] [4.3 Regression] ICE in expand_expr_real_1, at expr.c:8786 In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "tbm at cyrius dot com" 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-03/txt/msg00678.txt.bz2 ------- Comment #1 from tbm at cyrius dot com 2007-03-09 08:30 ------- Testcase: typedef long unsigned int size_t; __extension__ typedef long int __time_t; __extension__ typedef long int __suseconds_t; typedef struct { } __sigset_t; struct timeval { __time_t tv_sec; __suseconds_t tv_usec; }; extern void bcopy (__const void *__src, void *__dest, size_t __n) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1, 2))); capture_next_packet (int bpf, int timeout, int *sz) { struct timeval past, now, then; { bcopy (&then, &past, sizeof (then)); } } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31095