Catch up to recent changes to call_function_by_hand().
authorJohn Baldwin <jhb@FreeBSD.org>
Mon, 4 Sep 2017 22:57:02 +0000 (15:57 -0700)
committerJohn Baldwin <jhb@FreeBSD.org>
Mon, 4 Sep 2017 22:57:02 +0000 (15:57 -0700)
gdb/ChangeLog:

* spu-tdep.c (flush_ea_cache): Add missing argument to
call_function_by_hand.

gdb/ChangeLog
gdb/spu-tdep.c

index 9686de3f76a51d8b7d3193379aa5988315977cd3..abded2cc4f14b81ae83539d3f1682fddee02112c 100644 (file)
@@ -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.
index ca1a3fc99f99a506446925a20bd3598631930a53..59c51b2b86f240802b3a285eebc28fb342728346 100644 (file)
@@ -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);
     }
 }