diff options
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/remote.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 29df80e..f6a17d7 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2001-02-16 Michael Snyder <msnyder@mvstp600e.cygnus.com> + + * remote.c (build_remote_gdbarch_data): Use new TARGET_ADDR_BIT + instead of TARGET_PTR_BIT (to support Harvard architectures). + 2001-02-16 Andrew Cagney <ac131313@redhat.com> From 2001-02-11 Paul Hilfinger <hilfingr@lisbon.int.act-europe.fr> @@ -29,6 +34,7 @@ * f-exp.y: Include <ctype.h>. (parse_number): Ensure that ``i'' is always initialized. +>>>>>>> 1.966 2001-02-14 Jim Kingdon <jkingdon@engr.sgi.com> * MAINTAINERS: Add myself to paper trail section. diff --git a/gdb/remote.c b/gdb/remote.c index cba1442..c80fa09 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -5516,7 +5516,7 @@ build_remote_gdbarch_data (void) /* Cisco stuff */ tty_input = xmalloc (PBUFSIZ); - remote_address_size = TARGET_PTR_BIT; + remote_address_size = TARGET_ADDR_BIT; } void |