From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5762 invoked by alias); 13 Dec 2002 14:40:29 -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 5755 invoked from network); 13 Dec 2002 14:40:24 -0000 Received: from unknown (HELO takamaka.act-europe.fr) (212.157.227.202) by sources.redhat.com with SMTP; 13 Dec 2002 14:40:24 -0000 Received: by takamaka.act-europe.fr (Postfix, from userid 507) id D3450D2D29; Fri, 13 Dec 2002 15:40:23 +0100 (CET) Date: Fri, 13 Dec 2002 08:14:00 -0000 From: Joel Brobecker To: gdb-patches@sources.redhat.com Subject: [commit] fix compilation error in hppa-tdep.c (hppa_pop_frame) Message-ID: <20021213144023.GZ25575@gnat.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Pk6IbRAofICFmK5e" Content-Disposition: inline User-Agent: Mutt/1.4i X-SW-Source: 2002-12/txt/msg00414.txt.bz2 --Pk6IbRAofICFmK5e Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 280 I just checked the following patch in to fix a small compilation error... 2002-12-13 Joel Brobecker * hppa-tdep.c (hppa_pop_frame): Fix a compilation error introduced in the previous prototype change to set_momentary_breakpoint. -- Joel --Pk6IbRAofICFmK5e Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="frame_id.diff" Content-length: 944 Index: hppa-tdep.c =================================================================== RCS file: /cvs/src/src/gdb/hppa-tdep.c,v retrieving revision 1.39 diff -c -3 -p -r1.39 hppa-tdep.c *** hppa-tdep.c 11 Dec 2002 20:35:43 -0000 1.39 --- hppa-tdep.c 13 Dec 2002 14:34:09 -0000 *************** hppa_pop_frame (void) *** 1604,1610 **** for "return_command" will print the frame we returned to. */ sal = find_pc_line (target_pc, 0); sal.pc = target_pc; ! breakpoint = set_momentary_breakpoint (sal, NULL, bp_finish); breakpoint->silent = 1; /* So we can clean things up. */ --- 1604,1610 ---- for "return_command" will print the frame we returned to. */ sal = find_pc_line (target_pc, 0); sal.pc = target_pc; ! breakpoint = set_momentary_breakpoint (sal, null_frame_id, bp_finish); breakpoint->silent = 1; /* So we can clean things up. */ --Pk6IbRAofICFmK5e--