Include aarch32-tdep.h in aarch32-tdep.c
The error below shows that aarch32-tdep.c is missing an include for aarch32-tdep.h, add it. CXX aarch32-tdep.o /home/smarchi/src/binutils-gdb/gdb/aarch32-tdep.c: In function ‘const target_desc* aarch32_read_description()’: /home/smarchi/src/binutils-gdb/gdb/aarch32-tdep.c:27:1: error: no previous declaration for ‘const target_desc* aarch32_read_description()’ [-Werror=missing-declarations] aarch32_read_description () ^~~~~~~~~~~~~~~~~~~~~~~~ Putting the include of aarch32-tdep.h early in aarch32-tdep.c gives us an error about target_desc not being defined. Indeed, aarch32-tdep.h uses target_desc without forward-declaring it or including the proper header. Add a forward-declaration for it. gdb/ChangeLog: * aarch32-tdep.c: Include aarch32-tdep.h. * aarch32-tdep.h: Forward-declare struct target_desc. Change-Id: Ica4be4de0fbd7f22d56a29a40fbf0a31b5abdb16
This commit is contained in:
parent
6d91ce9a65
commit
23767560e5
@ -1,3 +1,8 @@
|
||||
2019-11-26 Simon Marchi <simon.marchi@efficios.com>
|
||||
|
||||
* aarch32-tdep.c: Include aarch32-tdep.h.
|
||||
* aarch32-tdep.h: Forward-declare struct target_desc.
|
||||
|
||||
2019-11-26 Christian Biesinger <cbiesinger@google.com>
|
||||
|
||||
* linux-nat.c (detach_one_lwp): Call safe_strerror instead of
|
||||
|
@ -16,6 +16,9 @@
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include "gdbsupport/common-defs.h"
|
||||
|
||||
#include "aarch32-tdep.h"
|
||||
|
||||
#include "gdbsupport/common-regcache.h"
|
||||
#include "arch/aarch32.h"
|
||||
|
||||
|
@ -18,6 +18,8 @@
|
||||
#ifndef AARCH32_TDEP_H
|
||||
#define AARCH32_TDEP_H
|
||||
|
||||
struct target_desc;
|
||||
|
||||
/* Get the AArch32 target description. */
|
||||
|
||||
const target_desc *aarch32_read_description ();
|
||||
|
Loading…
Reference in New Issue
Block a user