From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18496 invoked by alias); 26 Jul 2003 22:41:38 -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 18079 invoked from network); 26 Jul 2003 22:41:06 -0000 Received: from unknown (HELO localhost.redhat.com) (24.157.166.107) by sources.redhat.com with SMTP; 26 Jul 2003 22:41:06 -0000 Received: from redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 74EEE2B7F for ; Sat, 26 Jul 2003 18:41:05 -0400 (EDT) Message-ID: <3F230381.7020704@redhat.com> Date: Sat, 26 Jul 2003 22:41:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.2) Gecko/20030223 X-Accept-Language: en-us, en MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: [ob] Update m68hc11 init to set correct arch methods Content-Type: multipart/mixed; boundary="------------070205020904010607000506" X-SW-Source: 2003-07/txt/msg00465.txt.bz2 This is a multi-part message in MIME format. --------------070205020904010607000506 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 57 Just FYI, turned up by gdb_mbuild.sh. committed, Andrew --------------070205020904010607000506 Content-Type: text/plain; name="diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diffs" Content-length: 1249 2003-07-26 Andrew Cagney * m68hc11-tdep.c (m68hc11_gdbarch_init): Set non-deprecated store_return_value and extract_struct_value_address. Index: m68hc11-tdep.c =================================================================== RCS file: /cvs/src/src/gdb/m68hc11-tdep.c,v retrieving revision 1.82 diff -u -r1.82 m68hc11-tdep.c --- m68hc11-tdep.c 24 Jul 2003 19:59:33 -0000 1.82 +++ m68hc11-tdep.c 26 Jul 2003 22:16:57 -0000 @@ -1502,9 +1502,8 @@ set_gdbarch_deprecated_get_saved_register (gdbarch, deprecated_generic_get_saved_register); set_gdbarch_deprecated_store_struct_return (gdbarch, m68hc11_store_struct_return); - set_gdbarch_deprecated_store_return_value (gdbarch, m68hc11_store_return_value); - set_gdbarch_deprecated_extract_struct_value_address - (gdbarch, m68hc11_extract_struct_value_address); + set_gdbarch_store_return_value (gdbarch, m68hc11_store_return_value); + set_gdbarch_extract_struct_value_address (gdbarch, m68hc11_extract_struct_value_address); set_gdbarch_use_struct_convention (gdbarch, m68hc11_use_struct_convention); set_gdbarch_deprecated_init_extra_frame_info (gdbarch, m68hc11_init_extra_frame_info); set_gdbarch_deprecated_pop_frame (gdbarch, m68hc11_pop_frame); --------------070205020904010607000506--