[serialize] Reduce link_t size from 16 to 12

This commit is contained in:
Behdad Esfahbod 2022-05-19 18:00:58 -06:00
parent 30ba9a39e2
commit 6eaa22e9d7
1 changed files with 3 additions and 3 deletions

View File

@ -111,10 +111,10 @@ struct hb_serialize_context_t
struct link_t
{
unsigned width: 3;
bool is_signed: 1;
unsigned is_signed: 1;
unsigned whence: 2;
unsigned position: 28;
unsigned bias;
unsigned bias : 26;
unsigned position;
objidx_t objidx;
link_t () = default;