This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Catch up to recent changes to call_function_by_hand().


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=5b9f8a7c6e3873f97365569f50883a866b0a984a

commit 5b9f8a7c6e3873f97365569f50883a866b0a984a
Author: John Baldwin <jhb@FreeBSD.org>
Date:   Mon Sep 4 15:57:02 2017 -0700

    Catch up to recent changes to call_function_by_hand().
    
    gdb/ChangeLog:
    
    	* spu-tdep.c (flush_ea_cache): Add missing argument to
    	call_function_by_hand.

Diff:
---
 gdb/ChangeLog  | 5 +++++
 gdb/spu-tdep.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 9686de3..abded2c 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2017-09-04  John Baldwin  <jhb@FreeBSD.org>
+
+	* spu-tdep.c (flush_ea_cache): Add missing argument to
+	call_function_by_hand.
+
 2017-09-04  Pedro Alves  <palves@redhat.com>
 
 	* NEWS (Safer support for debugging with no debug info): New.
diff --git a/gdb/spu-tdep.c b/gdb/spu-tdep.c
index ca1a3fc..59c51b2 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);
     }
 }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]