diff options
author | Tom Tromey <tromey@redhat.com> | 2008-08-23 20:30:15 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2008-08-23 20:30:15 +0000 |
commit | 2e668a5dffaa49fde3492f9018ace8ba499ed515 (patch) | |
tree | cc75649140e4aac4d2ac530a9c69c78104919e95 /gdb/macrotab.h | |
parent | 91910cddf13d04ea3831c9af2f9c6ff27a9c0f33 (diff) | |
download | gdb-2e668a5dffaa49fde3492f9018ace8ba499ed515.zip gdb-2e668a5dffaa49fde3492f9018ace8ba499ed515.tar.gz gdb-2e668a5dffaa49fde3492f9018ace8ba499ed515.tar.bz2 |
* macrotab.h (struct macro_definition) <kind>: Shrink to one bit.
(argc): Now 31 bits.
Diffstat (limited to 'gdb/macrotab.h')
-rw-r--r-- | gdb/macrotab.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/macrotab.h b/gdb/macrotab.h index 5ff36ea..71f1d3e 100644 --- a/gdb/macrotab.h +++ b/gdb/macrotab.h @@ -269,12 +269,12 @@ struct macro_definition struct macro_table *table; /* What kind of macro it is. */ - enum macro_kind kind; + ENUM_BITFIELD (macro_kind) kind : 1; /* If `kind' is `macro_function_like', the number of arguments it takes, and their names. The names, and the array of pointers to them, are in the table's bcache, if it has one. */ - int argc; + int argc : 31; const char * const *argv; /* The replacement string (body) of the macro. This is in the |