From patchwork Tue Sep 5 16:26:29 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John Baldwin X-Patchwork-Id: 22627 Received: (qmail 14676 invoked by alias); 5 Sep 2017 16:27:19 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 14667 invoked by uid 89); 5 Sep 2017 16:27:18 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.2 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_STOCKGEN, SPF_HELO_PASS, SPF_SOFTFAIL autolearn=ham version=3.3.2 spammy= X-HELO: mail.baldwin.cx Received: from bigwig.baldwin.cx (HELO mail.baldwin.cx) (96.47.65.170) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 05 Sep 2017 16:27:13 +0000 Received: from ralph.baldwin.cx.com (c-73-231-226-104.hsd1.ca.comcast.net [73.231.226.104]) by mail.baldwin.cx (Postfix) with ESMTPSA id ED02E10A82D for ; Tue, 5 Sep 2017 12:27:10 -0400 (EDT) From: John Baldwin To: gdb-patches@sourceware.org Subject: [PUSHED] Catch up to recent changes to call_function_by_hand(). Date: Tue, 5 Sep 2017 09:26:29 -0700 Message-Id: <20170905162629.94866-1-jhb@FreeBSD.org> X-IsSubscribed: yes gdb/ChangeLog: * spu-tdep.c (flush_ea_cache): Add missing argument to call_function_by_hand. --- gdb/ChangeLog | 5 +++++ gdb/spu-tdep.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9686de3f76..abded2cc4f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2017-09-04 John Baldwin + + * spu-tdep.c (flush_ea_cache): Add missing argument to + call_function_by_hand. + 2017-09-04 Pedro Alves * NEWS (Safer support for debugging with no debug info): New. diff --git a/gdb/spu-tdep.c b/gdb/spu-tdep.c index ca1a3fc99f..59c51b2b86 100644 --- a/gdb/spu-tdep.c +++ b/gdb/spu-tdep.c @@ -2036,7 +2036,7 @@ flush_ea_cache (void) type = lookup_pointer_type (type); addr = BMSYMBOL_VALUE_ADDRESS (msymbol); - call_function_by_hand (value_from_pointer (type, addr), 0, NULL); + call_function_by_hand (value_from_pointer (type, addr), NULL, 0, NULL); } }