From a7cdaa914f4b937544d8f102679bb5129bb1ef08 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Sun, 24 Nov 2019 15:04:21 -0500 Subject: Include gdbarch.h in m68k-linux-nat.c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix this compilation error, and a bunch of similar ones: CXX m68k-linux-nat.o /home/smarchi/src/binutils-gdb/gdb/m68k-linux-nat.c: In function ‘void fetch_register(regcache*, int)’: /home/smarchi/src/binutils-gdb/gdb/m68k-linux-nat.c:133:9: error: ‘gdbarch_register_name’ was not declared in this scope gdbarch_register_name (gdbarch, regno), ^~~~~~~~~~~~~~~~~~~~~ gdb/ChangeLog: * m68k-linux-nat.c: Include gdbarch.h. Change-Id: I7cd47bc5d094241b2596e29c244eb55ed11f7a02 --- gdb/ChangeLog | 4 ++++ gdb/m68k-linux-nat.c | 1 + 2 files changed, 5 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 63a1508..3b656f4 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2019-11-24 Simon Marchi + + * m68k-linux-nat.c: Include gdbarch.h. + 2019-11-24 Tom Tromey * symfile.c (read_symbols): Update. diff --git a/gdb/m68k-linux-nat.c b/gdb/m68k-linux-nat.c index 91e68ba..959dbf4 100644 --- a/gdb/m68k-linux-nat.c +++ b/gdb/m68k-linux-nat.c @@ -25,6 +25,7 @@ #include "regcache.h" #include "target.h" #include "linux-nat.h" +#include "gdbarch.h" #include "m68k-tdep.h" -- cgit v1.1