summaryrefslogtreecommitdiff
path: root/gdb/regcache.c
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@specifix.com>2004-07-10 01:17:53 +0000
committerMichael Snyder <msnyder@specifix.com>2004-07-10 01:17:53 +0000
commit4517866d42b1f1849830629128e29545ae72c963 (patch)
tree7cad7bc2ace98ad93b4b3ca4a2baf4d9467bd78f /gdb/regcache.c
parent06e5188119d3a2d125b64a598e356dde4127320a (diff)
downloadgdb-4517866d42b1f1849830629128e29545ae72c963.tar.gz
2004-07-10 Michael Snyder <msnyder@redhat.com>
* symfile.c (generic_load): Comment typo. * stack.c (get_selected_block): Ditto. * regcache.c (regcache_cooked_read): Ditto. * monitor.c (monitor_debug): Ditto. * mips-tdep.c (mips_read_pc): Ditto. * i386-linux-nat.c (ps_get_thread_area): Ditto. * gdb_mbuild.sh: Ditto. * gdbarch.sh: Ditto. * gdbarch.h: Ditto.
Diffstat (limited to 'gdb/regcache.c')
-rw-r--r--gdb/regcache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/regcache.c b/gdb/regcache.c
index ceeaca63fe1..4928170fdd1 100644
--- a/gdb/regcache.c
+++ b/gdb/regcache.c
@@ -845,7 +845,7 @@ regcache_cooked_read (struct regcache *regcache, int regnum, void *buf)
else if (regcache->readonly_p
&& regnum < regcache->descr->nr_cooked_registers
&& regcache->register_valid_p[regnum])
- /* Read-only register cache, perhaphs the cooked value was cached? */
+ /* Read-only register cache, perhaps the cooked value was cached? */
memcpy (buf, register_buffer (regcache, regnum),
regcache->descr->sizeof_register[regnum]);
else