0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-29 20:28:52 +02:00

ircd::json: Resize value bitfields to alignment for movdqa.

This commit is contained in:
Jason Volk 2020-02-11 10:08:11 -08:00
parent c4f294810c
commit 1ebe09f36b

View file

@ -80,7 +80,7 @@ struct ircd::json::value
const struct member *object;
};
uint64_t len : 57; ///< length indicator
uint64_t len : 58; ///< length indicator
uint64_t type : 3; ///< json::type indicator
uint64_t serial : 1; ///< only *string is used. type indicates JSON
uint64_t alloc : 1; ///< indicates the pointer for type is owned