From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19888 invoked by alias); 30 Mar 2011 06:25:16 -0000 Received: (qmail 19875 invoked by uid 22791); 30 Mar 2011 06:25:15 -0000 X-SWARE-Spam-Status: No, hits=-6.4 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,SPF_HELO_PASS,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 30 Mar 2011 06:25:05 +0000 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p2U6P48F016382 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 30 Mar 2011 02:25:04 -0400 Received: from host1.jankratochvil.net (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id p2U6P2Du016905 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 30 Mar 2011 02:25:03 -0400 Received: from host1.jankratochvil.net (localhost [127.0.0.1]) by host1.jankratochvil.net (8.14.4/8.14.4) with ESMTP id p2U6P2f2014227; Wed, 30 Mar 2011 08:25:02 +0200 Received: (from jkratoch@localhost) by host1.jankratochvil.net (8.14.4/8.14.4/Submit) id p2U6P1vE014207; Wed, 30 Mar 2011 08:25:01 +0200 Date: Wed, 30 Mar 2011 10:45:00 -0000 From: Jan Kratochvil To: Tom Tromey Cc: gdb-patches@sourceware.org Subject: Regression: Re: RFC: update for GCC PR 47510 Message-ID: <20110330062501.GA14148@host1.jankratochvil.net> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2011-03/txt/msg01192.txt.bz2 On Tue, 29 Mar 2011 18:54:09 +0200, Tom Tromey wrote: > >>>>> "Tom" == Tom Tromey writes: > > Tom> There was an earlier thread about this bug: > Tom> http://sourceware.org/ml/gdb-patches/2011-02/msg00029.html > > Tom> Since then, a different patch has gone into GCC. This new patch puts a > Tom> linkage name onto the otherwise anonymous struct. This is a minor DWARF > Tom> extension that we asked for because the other approaches were a pain to > Tom> implement in GDB. With this new attribute, the patch becomes fairly > Tom> straightforward. > > I am checking this in now. This commit 96bfe92de6c67763182b1492c24c8edea9e00e1b has a regression on Fedora 15 (x86_64 and i686 native, not x86_64-m32) using gcc-4.6.0-0.15.fc15.x86_64: -PASS: gdb.cp/overload.exp: print call overloaded func long arg -PASS: gdb.cp/overload.exp: print call overloaded func unsigned long arg +FAIL: gdb.cp/overload.exp: print call overloaded func long arg +FAIL: gdb.cp/overload.exp: print call overloaded func unsigned long arg -PASS: gdb.cp/overload.exp: print call overloaded func double arg +FAIL: gdb.cp/overload.exp: print call overloaded func double arg -PASS: gdb.cp/overload.exp: print foo::overload1arg(long) -PASS: gdb.cp/overload.exp: print foo::overload1arg(unsigned long) +FAIL: gdb.cp/overload.exp: print foo::overload1arg(long) +FAIL: gdb.cp/overload.exp: print foo::overload1arg(unsigned long) -PASS: gdb.cp/overload.exp: print foo::overload1arg(double) +FAIL: gdb.cp/overload.exp: print foo::overload1arg(double) -PASS: gdb.cp/cpexprs.exp: print base::overload(long) const +FAIL: gdb.cp/cpexprs.exp: print base::overload(long) const Thanks, Jan