From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13519 invoked by alias); 11 Apr 2003 19:01: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 13198 invoked from network); 11 Apr 2003 19:01:31 -0000 Received: from unknown (HELO zenia.red-bean.com) (12.222.151.100) by sources.redhat.com with SMTP; 11 Apr 2003 19:01:31 -0000 Received: from zenia.red-bean.com (localhost.localdomain [127.0.0.1]) by zenia.red-bean.com (8.12.5/8.12.5) with ESMTP id h3BJ2oFq030567; Fri, 11 Apr 2003 14:02:50 -0500 Received: (from jimb@localhost) by zenia.red-bean.com (8.12.5/8.12.5/Submit) id h3BJ2nkd030563; Fri, 11 Apr 2003 14:02:49 -0500 To: gdb-patches@sources.redhat.com Subject: PATCH: restore accidentally deleted call From: Jim Blandy Date: Fri, 11 Apr 2003 19:01:00 -0000 Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2.95 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2003-04/txt/msg00238.txt.bz2 The call below was deleted in revision 1.88 of s390-tdep.c; inferior calls broke because they didn't return to the call dummy breakpoint. Since the ChangeLog entry only talks about deleting the gdbarch calls to set CALL_DUMMY_START_OFFSET and CALL_DUMMY_LENGTH, I'm guessing that was by accident. 2003-04-10 Jim Blandy * s390-tdep.c (s390_gdbarch_init): Put back accidentally deleted call to set_gdbarch_deprecated_push_arguments. Index: s390-tdep.c =================================================================== RCS file: /cvs/src/src/gdb/s390-tdep.c,v retrieving revision 1.89 diff -c -r1.89 s390-tdep.c *** s390-tdep.c 5 Apr 2003 18:54:38 -0000 1.89 --- s390-tdep.c 10 Apr 2003 22:26:56 -0000 *************** *** 1864,1869 **** --- 1864,1871 ---- set_gdbarch_deprecated_pc_in_call_dummy (gdbarch, deprecated_pc_in_call_dummy_at_entry_point); set_gdbarch_deprecated_push_arguments (gdbarch, s390_push_arguments); set_gdbarch_save_dummy_frame_tos (gdbarch, generic_save_dummy_frame_tos); + set_gdbarch_deprecated_push_return_address (gdbarch, + s390_push_return_address); set_gdbarch_sizeof_call_dummy_words (gdbarch, sizeof (s390_call_dummy_words)); set_gdbarch_call_dummy_words (gdbarch, s390_call_dummy_words);