From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30135 invoked by alias); 12 Aug 2002 19:51:41 -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 30127 invoked from network); 12 Aug 2002 19:51:40 -0000 Received: from unknown (HELO localhost.redhat.com) (216.138.202.10) by sources.redhat.com with SMTP; 12 Aug 2002 19:51:40 -0000 Received: from ges.redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 18DC53CFC; Mon, 12 Aug 2002 15:51:39 -0400 (EDT) Message-ID: <3D5811CA.2070205@ges.redhat.com> Date: Mon, 12 Aug 2002 12:51:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.0) Gecko/20020810 X-Accept-Language: en-us, en MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Cc: Mark Kettenis Subject: [patch/rfc] regcache_raw_read_as_address() -> regcache_cooked_read_as_ulongest() Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2002-08/txt/msg00274.txt.bz2 Hello, This patch replaces the function regcache_raw_read_as_address() with the pair: regcache_cooked_read_as_longest() regcache_cooked_read_as_ulongest() The two calls to the old ..as_address() being replaced with the ulongest version. I think the change is ok (i386 shows no regressions, the mips doesn't use this code :-). I'm just wondering about the names. Perhaps: regcache_cooked_read_signed() & regcache_cooked_read_unsigned()? thoughts? Andrew