From: Andrew Cagney Date: Thu, 15 May 2003 18:01:50 +0000 (+0000) Subject: 2003-05-15 Andrew Cagney X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b923b08ddfdf22cbf8e4e412510a44f57773ac5b;p=binutils-gdb.git 2003-05-15 Andrew Cagney * regcache.c (build_regcache): Set deprecated_register_valid directly. (deprecated_grub_regcache_for_register_valid): Delete function. * regcache.h (deprecated_grub_regcache_for_register_valid): Delete declaration. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a601a8dc9cb..cbcc0be9d78 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,11 @@ +2003-05-15 Andrew Cagney + + * regcache.c (build_regcache): Set deprecated_register_valid + directly. + (deprecated_grub_regcache_for_register_valid): Delete function. + * regcache.h (deprecated_grub_regcache_for_register_valid): Delete + declaration. + 2003-05-15 David Carlton Committed by Elena Zannoni diff --git a/gdb/regcache.c b/gdb/regcache.c index acf3044fa3c..43548453e6b 100644 --- a/gdb/regcache.c +++ b/gdb/regcache.c @@ -499,12 +499,6 @@ deprecated_grub_regcache_for_registers (struct regcache *regcache) return regcache->registers; } -char * -deprecated_grub_regcache_for_register_valid (struct regcache *regcache) -{ - return regcache->register_valid_p; -} - /* Global structure containing the current regcache. */ /* FIXME: cagney/2002-05-11: The two global arrays registers[] and deprecated_register_valid[] currently point into this structure. */ @@ -1424,7 +1418,7 @@ build_regcache (void) current_regcache = regcache_xmalloc (current_gdbarch); current_regcache->readonly_p = 0; deprecated_registers = deprecated_grub_regcache_for_registers (current_regcache); - deprecated_register_valid = deprecated_grub_regcache_for_register_valid (current_regcache); + deprecated_register_valid = current_regcache->register_valid_p; } static void diff --git a/gdb/regcache.h b/gdb/regcache.h index 5d77095810b..f84820519af 100644 --- a/gdb/regcache.h +++ b/gdb/regcache.h @@ -196,7 +196,6 @@ extern void regcache_cpy_no_passthrough (struct regcache *dest, struct regcache parameterized with FRAME or REGCACHE. */ extern char *deprecated_grub_regcache_for_registers (struct regcache *); -extern char *deprecated_grub_regcache_for_register_valid (struct regcache *); extern void deprecated_read_register_gen (int regnum, char *myaddr); extern void deprecated_write_register_gen (int regnum, char *myaddr); extern void deprecated_read_register_bytes (int regbyte, char *myaddr,