diff options
author | Michael Snyder <msnyder@specifix.com> | 2001-02-16 23:40:39 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@specifix.com> | 2001-02-16 23:40:39 +0000 |
commit | b22186954e4f84322f6700daf98417bf8f5fbd70 (patch) | |
tree | 742d0383fe3163691d7dbc4a1b69a542d83ad635 /gdb/remote.c | |
parent | ef0288976d44e02631618a9b3f8d01822061282d (diff) | |
download | gdb-b22186954e4f84322f6700daf98417bf8f5fbd70.tar.gz |
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 cba1442607e..c80fa092294 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 |