From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22102 invoked by alias); 7 Nov 2002 01:45:27 -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 22090 invoked from network); 7 Nov 2002 01:45:26 -0000 Received: from unknown (HELO touchme.toronto.redhat.com) (216.138.202.10) by sources.redhat.com with SMTP; 7 Nov 2002 01:45:26 -0000 Received: from redhat.com (toocool.toronto.redhat.com [172.16.14.72]) by touchme.toronto.redhat.com (Postfix) with ESMTP id 48285800019; Wed, 6 Nov 2002 20:45:26 -0500 (EST) Message-ID: <3DC9C5B6.CE5430BC@redhat.com> Date: Wed, 06 Nov 2002 17:45:00 -0000 From: "J. Johnston" Organization: Red Hat Inc. X-Accept-Language: en MIME-Version: 1.0 To: Andrew Cagney Cc: gdb-patches@sources.redhat.com Subject: Re: RFA: change for gdb/mi 494 References: <3DB489B6.D71D07EA@redhat.com> <3DB48CCA.5060706@redhat.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-SW-Source: 2002-11/txt/msg00162.txt.bz2 Andrew Cagney wrote: > > > The following is a patch as recommended in the PR gdb/mi 494 to change the > > usage of parse_and_eval_address() to string_to_core_addr(). > > > > Ok to commit? > > > > -- Jeff J. > > > > mi/ChangeLog: > > > > 2002-10-21 Jeff Johnston > > > > * mi-cmd-var.c (mi_cmd_var_create): Change the function used to parse the > > frame addr from parse_and_eval_address() to string_to_core_addr(). > > > > > > > > --- mi/mi-cmd-var.1.c Mon Oct 21 16:31:47 2002 > > +++ mi/mi-cmd-var.c Mon Oct 21 16:32:49 2002 > > @@ -81,7 +81,7 @@ > > else > > { > > var_type = USE_SPECIFIED_FRAME; > > - frameaddr = parse_and_eval_address (frame); > > + frameaddr = string_to_core_addr (frame); > > } > > > > if (varobjdebug) > > Yes, definitly! > > Andrew Patch checked in. -- Jeff J.