2003-06-16 Andrew Cagney <cagney@redhat.com>

* regcache.c (do_cooked_read): Do not use register_valid_p.
This commit is contained in:
Andrew Cagney
2003-06-16 13:19:36 +00:00
parent f899b4b82a
commit 6f4e5a4121
2 changed files with 5 additions and 2 deletions

View File

@@ -423,8 +423,7 @@ static int
do_cooked_read (void *src, int regnum, void *buf)
{
struct regcache *regcache = src;
if (!regcache_valid_p (regcache, regnum)
&& regcache->readonly_p)
if (!regcache->register_valid_p[regnum] && regcache->readonly_p)
/* Don't even think about fetching a register from a read-only
cache when the register isn't yet valid. There isn't a target
from which the register value can be fetched. */