From bb1183e25ae74ba21500fb4e39bc1ca9822e3086 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Sun, 12 Jan 2020 11:06:23 -0500 Subject: [PATCH] gdbserver: make aarch64_write_goto_address static This function is only used in this file, so make it static. It fixes this error, when building with -Wmissing-declarations: CXX linux-aarch64-low.o /home/simark/src/binutils-gdb/gdb/gdbserver/linux-aarch64-low.c:2642:1: error: no previous declaration for 'void aarch64_write_goto_address(CORE_ADDR, CORE_ADDR, int)' [-Werror=missing-declarations] aarch64_write_goto_address (CORE_ADDR from, CORE_ADDR to, int size) ^~~~~~~~~~~~~~~~~~~~~~~~~~ gdb/gdbserver/ChangeLog: * linux-aarch64-low.c (aarch64_write_goto_address): Make static. --- gdb/gdbserver/ChangeLog | 4 ++++ gdb/gdbserver/linux-aarch64-low.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 40a765a3ed..83be63c393 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,7 @@ +2020-01-12 Simon Marchi + + * linux-aarch64-low.c (aarch64_write_goto_address): Make static. + 2020-01-12 Simon Marchi * linux-aarch32-tdesc.c: Include linux-aarch32-tdesc.h. diff --git a/gdb/gdbserver/linux-aarch64-low.c b/gdb/gdbserver/linux-aarch64-low.c index c58347d80c..961fd5b3cc 100644 --- a/gdb/gdbserver/linux-aarch64-low.c +++ b/gdb/gdbserver/linux-aarch64-low.c @@ -2638,7 +2638,7 @@ aarch64_emit_goto (int *offset_p, int *size_p) /* Implementation of emit_ops method "write_goto_address". */ -void +static void aarch64_write_goto_address (CORE_ADDR from, CORE_ADDR to, int size) { uint32_t insn; -- 2.34.1