From: John Baldwin Date: Mon, 4 Sep 2017 22:57:02 +0000 (-0700) Subject: Catch up to recent changes to call_function_by_hand(). X-Git-Tag: users/ARM/embedded-binutils-master-2017q4~1183 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5b9f8a7c6e3873f97365569f50883a866b0a984a;p=platform%2Fupstream%2Fbinutils.git 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 --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 + + * 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 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); } }