From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15270 invoked by alias); 9 Jul 2010 16:11:01 -0000 Received: (qmail 15201 invoked by uid 48); 9 Jul 2010 16:10:45 -0000 Date: Fri, 09 Jul 2010 16:11:00 -0000 Message-ID: <20100709161045.15200.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug middle-end/44878] [4.6 Regression] Build fails when compiling libstdc++ In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "sje at cup dot hp 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: 2010-07/txt/msg01029.txt.bz2 ------- Comment #2 from sje at cup dot hp dot com 2010-07-09 16:10 ------- Here is a smaller test case: class e { public: e(void* __e); e(const e&); }; void * v() { } e foo() { return e(v()); } It only fails on IA64 in 32 bit mode and the problem seems to be related to the change in needs_to_live_in_memory. If I undo the one line change in that function then the example will compile. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44878