aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-03-01 01:51:54 +0000
committerAndrew Cagney <cagney@redhat.com>2001-03-01 01:51:54 +0000
commit97900206ca9bd52b53cc04501b080d559123a4b0 (patch)
treefb01469c12a277e527bfed8ae3cae9e2fc3eb3bf /gdb
parent4e052eda914ce3a3c48b31a0d13bce89c364495e (diff)
downloadgdb-97900206ca9bd52b53cc04501b080d559123a4b0.zip
gdb-97900206ca9bd52b53cc04501b080d559123a4b0.tar.gz
gdb-97900206ca9bd52b53cc04501b080d559123a4b0.tar.bz2
* regcache.h (register_valid): Fix comment documenting valid
states.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/regcache.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 9ba3400..4a9ae4e 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+Wed Feb 28 20:37:36 2001 Andrew Cagney <ac131313@redhat.com>
+
+ * regcache.h (register_valid): Fix comment documenting valid
+ states.
+
Tue Feb 27 23:56:23 2001 Andrew Cagney <ac131313@redhat.com>
From Steven Johnson:
diff --git a/gdb/regcache.h b/gdb/regcache.h
index 682156a..d76cd8b 100644
--- a/gdb/regcache.h
+++ b/gdb/regcache.h
@@ -28,7 +28,7 @@
extern char *registers;
/* Character array containing the current state of each register
- (unavailable<0, valid=0, invalid>0). */
+ (unavailable<0, invalid=0, valid>0). */
extern signed char *register_valid;