From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11927 invoked by alias); 26 Mar 2010 16:54:04 -0000 Received: (qmail 11918 invoked by uid 22791); 26 Mar 2010 16:54:03 -0000 X-SWARE-Spam-Status: No, hits=-7.1 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,SPF_HELO_PASS 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; Fri, 26 Mar 2010 16:53:56 +0000 Received: from int-mx03.intmail.prod.int.phx2.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.16]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o2QGrqQM000806 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 26 Mar 2010 12:53:52 -0400 Received: from [IPv6:::1] (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx03.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o2QGrnGR030331 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 26 Mar 2010 12:53:51 -0400 Message-ID: <4BACE69D.8060805@redhat.com> Date: Fri, 26 Mar 2010 16:54:00 -0000 From: Keith Seitz User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.8) Gecko/20100301 Fedora/3.0.3-1.fc11 Lightning/1.0b1 Thunderbird/3.0.3 MIME-Version: 1.0 To: Ulrich Weigand CC: gdb-patches@sourceware.org Subject: Re: [RFA] Java DWARF fixes References: <201003261648.o2QGm440019919@d12av02.megacenter.de.ibm.com> In-Reply-To: <201003261648.o2QGm440019919@d12av02.megacenter.de.ibm.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit 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: 2010-03/txt/msg00903.txt.bz2 On 03/26/2010 09:48 AM, Ulrich Weigand wrote: > Thanks! Unfortunately, the test case still fails for me: > FAIL: gdb.java/jmisc.exp: ptype jmisc > > This time the problem seems to be that the constructor > is shown with a "void" argument list: > > type = class jmisc extends java.lang.Object { > > void main(java.lang.String[])void; > jmisc(void)void; > } For reference, this is what the test log shows for this test before dwarf2_physname: ptype jmisc type = class jmisc extends java.lang.Object { jmisc(); void main(java.lang.String[])void; } (gdb) FAIL: gdb.java/jmisc.exp: ptype jmisc > Is this a testcase problem or still something wrong in > the symbol reader? This is more a problem with the type printer, I should think. I've been trying to fix this "for good," but I've run into a few roadblock thinko's that need working around. Stay tuned... Keith