From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5710 invoked by alias); 6 Jul 2004 19:29:53 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 5692 invoked from network); 6 Jul 2004 19:29:53 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 6 Jul 2004 19:29:53 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.10/8.12.10) with ESMTP id i66JTqe1017923 for ; Tue, 6 Jul 2004 15:29:53 -0400 Received: from pobox.toronto.redhat.com (pobox.toronto.redhat.com [172.16.14.4]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id i66JTq028510; Tue, 6 Jul 2004 15:29:52 -0400 Received: from touchme.toronto.redhat.com (IDENT:postfix@touchme.toronto.redhat.com [172.16.14.9]) by pobox.toronto.redhat.com (8.12.8/8.12.8) with ESMTP id i66JTpvU011807; Tue, 6 Jul 2004 15:29:51 -0400 Received: from redhat.com (toocool.toronto.redhat.com [172.16.14.72]) by touchme.toronto.redhat.com (Postfix) with ESMTP id 2D23F800380; Tue, 6 Jul 2004 15:29:51 -0400 (EDT) Message-ID: <40EAFDAF.4080903@redhat.com> Date: Tue, 06 Jul 2004 19:29:00 -0000 From: Jeff Johnston User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 MIME-Version: 1.0 To: Daniel Jacobowitz Cc: gdb-patches@sources.redhat.com Subject: Re: [RFA]: Make class_name_from_physname part of language vector References: <40E9B840.8040102@redhat.com> <20040705215028.GA8372@nevyn.them.org> <40E9E94E.1010104@redhat.com> <20040706142932.GA10410@nevyn.them.org> In-Reply-To: <20040706142932.GA10410@nevyn.them.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2004-07/txt/msg00054.txt.bz2 Patch checked in. Thanks. -- Jeff J. Daniel Jacobowitz wrote: > On Mon, Jul 05, 2004 at 07:50:38PM -0400, Jeff Johnston wrote: > >>New ChangeLog with name change: >> >>2004-07-05 Jeff Johnston >> >> * language.h (struct_language_defn): Add new function pointer: >> la_class_name_from_physname. Also add new prototype for >> language_class_name_from_physname. >> * language.c (language_class_name_from_physname): New function. >> (unk_lang_class_name): Ditto. >> (unknown_language_defn, auto_language_defn): Change >> to add unk_lang_class_name function pointer for >> la_class_name_from_physname. >> (local_language_defn): Ditto. >> * dwarf2read.c (guess_structure_name): Change to call >> language_class_name_from_physname. >> (determine_class_name): Ditto. >> * cp-support.c (class_name_from_physname): Renamed. >> (cp_class_name_from_physname): New name of function. >> * cp-support.h: Ditto. >> * c-lang.c (c_language_defn): Change to add NULL >> for class_name_from_physname function pointer. >> (cplus_language_defn): Change to add cp_class_name_from_physname. >> * jv-lang.c (java_class_name_physname): New function. >> (java_find_last_component): New static routine. >> (java_language_defn): Add java_class_name_from_physname pointer. >> * ada-lang.c (ada_language_defn): Change to add NULL >> for class_name_from_physname function pointer. >> * f-lang.c (f_language_defn): Ditto. >> * m2-lang.c (m2_language_defn): Ditto. >> * objc-lang.c (objc_language_defn): Ditto. >> * p-lang.c (pascal_language_defn): Ditto. >> * scm-lang.c (scm_language_defn): Ditto. > > > Thanks, this version is OK. >