mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-27 08:43:40 -07:00
Store flags as bitfields to save space in segment structure.
Copied from Perforce Change: 185932 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
d05197dccb
commit
6adaa61966
1 changed files with 2 additions and 2 deletions
|
|
@ -94,8 +94,8 @@ typedef struct amcSegStruct {
|
|||
GCSegStruct gcSegStruct; /* superclass fields must come first */
|
||||
amcGen gen; /* generation this segment belongs to */
|
||||
Nailboard board; /* nailboard for this segment or NULL if none */
|
||||
Bool old; /* .seg.old */
|
||||
Bool deferred; /* .seg.deferred */
|
||||
unsigned old : 1; /* .seg.old */
|
||||
unsigned deferred : 1; /* .seg.deferred */
|
||||
Sig sig; /* <code/misc.h#sig> */
|
||||
} amcSegStruct;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue