diff options
author | Michael Snyder <msnyder@vmware.com> | 2001-02-16 23:40:39 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2001-02-16 23:40:39 +0000 |
commit | d696208fa8e02381f0e3ca978f1169d053c43991 (patch) | |
tree | 155afc6a438fd256d4581e281ce2ea5c7421371a /gdb/remote.c | |
parent | 971429b4a49f466bf17f9ba9a6fea6517ad68af0 (diff) | |
download | gdb-d696208fa8e02381f0e3ca978f1169d053c43991.zip gdb-d696208fa8e02381f0e3ca978f1169d053c43991.tar.gz gdb-d696208fa8e02381f0e3ca978f1169d053c43991.tar.bz2 |
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).
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |