From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3765 invoked by alias); 21 Oct 2004 03:41:39 -0000 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 Received: (qmail 3748 invoked by uid 48); 21 Oct 2004 03:41:38 -0000 Date: Thu, 21 Oct 2004 03:41:00 -0000 Message-ID: <20041021034138.3747.qmail@sourceware.org> From: "pinskia at gcc dot gnu dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20040113200005.13674.lucier@math.purdue.edu> References: <20040113200005.13674.lucier@math.purdue.edu> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug rtl-optimization/13674] [4.0 Regression] ICE in reload_cse_simplify_operands, at postreload.c:378 on PPC64 X-Bugzilla-Reason: CC X-SW-Source: 2004-10/txt/msg02738.txt.bz2 List-Id: ------- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-21 03:41 ------- Here is the testcase which can reproduce it on the mainline for -mpowerpc64: struct __attribute__((packed)) G { unsigned char i; unsigned long long l; }; unsigned long long foo (struct G x) { return x.l; } For -m64 (on both powerpc64-linux and powerpc-darwin): struct __attribute__((packed)) G { unsigned char i; unsigned long l; }; unsigned long foo (struct G x) { return x.l; } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13674