diff options
author | John Ericson <git@JohnEricson.me> | 2021-07-06 09:40:44 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-07-13 00:49:57 -0400 |
commit | f148d9d334c4b8d26a8e8ce01a3ddf21fac80ee3 (patch) | |
tree | a01c015a4b975b6178ee3c1acb70c1aff549d19f /gdb/netbsd-tdep.c | |
parent | 0618ae41497998792701b72f34ea4859cf95aafc (diff) | |
download | gdb-f148d9d334c4b8d26a8e8ce01a3ddf21fac80ee3.zip gdb-f148d9d334c4b8d26a8e8ce01a3ddf21fac80ee3.tar.gz gdb-f148d9d334c4b8d26a8e8ce01a3ddf21fac80ee3.tar.bz2 |
Fix some dangling references to `netbsd-tdep`
These files were renamed in 1b71cfcfdc3e13a655fefa6566b5564cec044c10,
but evidentially a few dangling references were left behind. This causes
builds to fail:
$ ./configure --target i686-netbsdelf
$ make
make: *** No rule to make target 'nbsd-tdep.c', needed by 'nbsd-tdep.o'. Stop.
Diffstat (limited to 'gdb/netbsd-tdep.c')
-rw-r--r-- | gdb/netbsd-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/netbsd-tdep.c b/gdb/netbsd-tdep.c index 3b879b6..965ecfb 100644 --- a/gdb/netbsd-tdep.c +++ b/gdb/netbsd-tdep.c @@ -520,7 +520,7 @@ nbsd_get_siginfo_type (struct gdbarch *gdbarch) return siginfo_type; } -/* See nbsd-tdep.h. */ +/* See netbsd-tdep.h. */ void nbsd_info_proc_mappings_header (int addr_bit) @@ -607,7 +607,7 @@ nbsd_get_syscall_number (struct gdbarch *gdbarch, thread_info *thread) internal_error (__FILE__, __LINE__, _("nbsd_get_sycall_number called")); } -/* See nbsd-tdep.h. */ +/* See netbsd-tdep.h. */ void nbsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch) |