From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25719 invoked by alias); 23 Mar 2003 20:36:00 -0000 Mailing-List: contact gcc-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-prs-owner@gcc.gnu.org Received: (qmail 25705 invoked by uid 71); 23 Mar 2003 20:36:00 -0000 Date: Sun, 23 Mar 2003 21:06:00 -0000 Message-ID: <20030323203600.25703.qmail@sources.redhat.com> To: nobody@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org, From: Falk Hueffner Subject: Re: target/10084: [3.2/3.3 regression] alpha: ICE while building kseg/ddd Reply-To: Falk Hueffner X-SW-Source: 2003-03/txt/msg01543.txt.bz2 List-Id: The following reply was made to PR target/10084; it has been noted by GNATS. From: Falk Hueffner To: gcc-gnats@gcc.gnu.org, gcc-bugs@gcc.gnu.org, rmurray@debian.org, 184753@bugs.debian.org Cc: Subject: Re: target/10084: [3.2/3.3 regression] alpha: ICE while building kseg/ddd Date: 23 Mar 2003 21:29:34 +0100 Hi, here's a smaller test case: struct Foo { Foo(); Foo(const Foo &); }; inline Foo foo(Foo s1) { Foo tmp(s1); return tmp; } const Foo bar = foo(Foo()); % g++ -v Reading specs from /usr/local/stow/gcc-2003.03.11/bin/../lib/gcc-lib/alphaev68-unknown-linux-gnu/3.4/specs Configured with: ../configure --enable-languages=c++ Thread model: posix gcc version 3.4 20030310 (experimental) % g++ -c -g -O bug.cc bug.cc: In function `void __static_initialization_and_destruction_0(int, int)': bug.cc:11: internal compiler error: in mem_loc_descriptor, at dwarf2out.c:8508 Please submit a full bug report, with preprocessed source if appropriate. See for instructions. g++ 2.95 has no problems. Removing -g or -O also fixes the problem. -- Falk