aboutsummaryrefslogtreecommitdiff
path: root/gdb/regformats
diff options
context:
space:
mode:
authorDaniel Jacobowitz <drow@false.org>2002-02-04 22:41:36 +0000
committerDaniel Jacobowitz <drow@false.org>2002-02-04 22:41:36 +0000
commitdb2530270bcc7d2c64f1a3ba9cda1d3b65109e2f (patch)
tree79346b86f9bcc444a77c923e1458b495af7dff50 /gdb/regformats
parent206be19c1b7256254407b3630b8ea2a7a087ed4d (diff)
downloadfsf-binutils-gdb-db2530270bcc7d2c64f1a3ba9cda1d3b65109e2f.zip
fsf-binutils-gdb-db2530270bcc7d2c64f1a3ba9cda1d3b65109e2f.tar.gz
fsf-binutils-gdb-db2530270bcc7d2c64f1a3ba9cda1d3b65109e2f.tar.bz2
2002-02-04 Daniel Jacobowitz <drow@mvista.com>
* regformats/regdef.h (struct reg): Add comment describing the requirements for offset and size fields.
Diffstat (limited to 'gdb/regformats')
-rw-r--r--gdb/regformats/regdef.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/regformats/regdef.h b/gdb/regformats/regdef.h
index d70a488..17174ee 100644
--- a/gdb/regformats/regdef.h
+++ b/gdb/regformats/regdef.h
@@ -23,6 +23,11 @@ struct reg
/* The name of this register - NULL for pad entries. */
const char *name;
+ /* At the moment, both of the following bit counts must be divisible
+ by eight (to match the representation as two hex digits) and divisible
+ by the size of a byte (to match the layout of each register in
+ memory). */
+
/* The offset (in bits) of the value of this register in the buffer. */
int offset;