diff options
-rw-r--r-- | gdb/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/Makefile.in | 2 | ||||
-rw-r--r-- | gdb/x86-nat.c | 4 |
3 files changed, 10 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3fda785fe50..9bbf827eff3 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +2015-12-06 Mike Stump <mikestump@comcast.net> + Joel Brobecker <brobecker@adacore.com> + + * Makefile.in (TAGS): Replace i386-nat.h by x86-nat.h. + * x86-nat.c: Replace remaining references to i386-nat + by reference to x86-nat instead. + 2015-12-05 Joel Brobecker <brobecker@adacore.com> GDB 7.10.1 released. diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 14ad405ac7d..3eadbbcf437 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -965,7 +965,7 @@ psymtab.h psympriv.h progspace.h bfin-tdep.h \ amd64-darwin-tdep.h charset-list.h \ config/djgpp/langinfo.h config/djgpp/nl_types.h darwin-nat.h \ dicos-tdep.h filesystem.h gcore.h gdb_wchar.h hppabsd-tdep.h \ -i386-darwin-tdep.h i386-nat.h linux-record.h moxie-tdep.h nios2-tdep.h \ +i386-darwin-tdep.h x86-nat.h linux-record.h moxie-tdep.h nios2-tdep.h \ ft32-tdep.h \ osdata.h procfs.h python/py-event.h python/py-events.h python/py-stopevent.h \ python/python-internal.h python/python.h ravenscar-thread.h record.h \ diff --git a/gdb/x86-nat.c b/gdb/x86-nat.c index bfdf0d08143..b465dc8fb84 100644 --- a/gdb/x86-nat.c +++ b/gdb/x86-nat.c @@ -107,7 +107,7 @@ x86_debug_reg_state (pid_t pid) return &x86_process_info_get (pid)->state; } -/* See declaration in i386-nat.h. */ +/* See declaration in x86-nat.h. */ void x86_forget_process (pid_t pid) @@ -251,7 +251,7 @@ x86_remove_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch, extreme example, consider the case where all the watchpoints watch the same address and the same region length: then we can handle a virtually unlimited number of watchpoints, due to debug register - sharing implemented via reference counts in i386-nat.c. */ + sharing implemented via reference counts in x86-nat.c. */ static int x86_can_use_hw_breakpoint (struct target_ops *self, |