From d696208fa8e02381f0e3ca978f1169d053c43991 Mon Sep 17 00:00:00 2001 From: Michael Snyder Date: Fri, 16 Feb 2001 23:40:39 +0000 Subject: [PATCH] 2001-02-16 Michael Snyder * remote.c (build_remote_gdbarch_data): Use new TARGET_ADDR_BIT instead of TARGET_PTR_BIT (to support Harvard architectures). --- gdb/ChangeLog | 6 ++++++ gdb/remote.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 29df80e010..f6a17d7246 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2001-02-16 Michael Snyder + + * 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 From 2001-02-11 Paul Hilfinger @@ -29,6 +34,7 @@ * f-exp.y: Include . (parse_number): Ensure that ``i'' is always initialized. +>>>>>>> 1.966 2001-02-14 Jim Kingdon * MAINTAINERS: Add myself to paper trail section. diff --git a/gdb/remote.c b/gdb/remote.c index cba1442607..c80fa09229 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 -- 2.34.1