diff options
author | Tom Tromey <tromey@adacore.com> | 2020-04-06 12:42:40 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2020-04-06 12:42:40 -0600 |
commit | dea34e8cc336a80546dac21463583a76e3e5d473 (patch) | |
tree | 72b883ca06f1360c1f8ff378fc945a4bad421931 /gdb/mips-nbsd-tdep.c | |
parent | 93689ce91271bf88580a2d035a466479c16f4e71 (diff) | |
download | gdb-dea34e8cc336a80546dac21463583a76e3e5d473.zip gdb-dea34e8cc336a80546dac21463583a76e3e5d473.tar.gz gdb-dea34e8cc336a80546dac21463583a76e3e5d473.tar.bz2 |
Fix build breakage in NetBSD tdep files
A recent patch caused some build failures in NetBSD tdep files. I saw
this failure in my --enable-target=all build.
This patch fixes the problems. Tested by rebuilding.
I am going to check this in.
gdb/ChangeLog
2020-04-06 Tom Tromey <tromey@adacore.com>
* sh-nbsd-tdep.c: Include nbsd-tdep.h.
* ppc-nbsd-tdep.c: Include nbsd-tdep.h.
* mips-nbsd-tdep.c (mipsnbsd_init_abi): Add missing ";".
* arm-nbsd-tdep.c: Include nbsd-tdep.h.
* hppa-nbsd-tdep.c: Include nbsd-tdep.h.
Diffstat (limited to 'gdb/mips-nbsd-tdep.c')
-rw-r--r-- | gdb/mips-nbsd-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/mips-nbsd-tdep.c b/gdb/mips-nbsd-tdep.c index 6f4d22b..524990a 100644 --- a/gdb/mips-nbsd-tdep.c +++ b/gdb/mips-nbsd-tdep.c @@ -354,7 +354,7 @@ static void mipsnbsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch) { - nbsd_init_abi (info, gdbarch) + nbsd_init_abi (info, gdbarch); set_gdbarch_iterate_over_regset_sections (gdbarch, mipsnbsd_iterate_over_regset_sections); |