From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27020 invoked by alias); 21 Oct 2002 23:11:51 -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 27011 invoked from network); 21 Oct 2002 23:11:50 -0000 Received: from unknown (HELO touchme.toronto.redhat.com) (216.138.202.10) by sources.redhat.com with SMTP; 21 Oct 2002 23:11:50 -0000 Received: from redhat.com (toocool.toronto.redhat.com [172.16.14.72]) by touchme.toronto.redhat.com (Postfix) with ESMTP id 307E9800084 for ; Mon, 21 Oct 2002 19:11:50 -0400 (EDT) Message-ID: <3DB489B6.D71D07EA@redhat.com> Date: Mon, 21 Oct 2002 16:11:00 -0000 From: "J. Johnston" Organization: Red Hat Inc. X-Accept-Language: en MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: RFA: change for gdb/mi 494 Content-Type: multipart/mixed; boundary="------------5744ACF86526DB761560B36E" X-SW-Source: 2002-10/txt/msg00366.txt.bz2 This is a multi-part message in MIME format. --------------5744ACF86526DB761560B36E Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-length: 370 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(). --------------5744ACF86526DB761560B36E Content-Type: text/plain; charset=us-ascii; name="494.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="494.patch" Content-length: 292 --- 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) --------------5744ACF86526DB761560B36E--