On Fri, 22 Apr 2022 at 15:01, Alex Bennée <[email protected]> wrote: > > > Richard Henderson <[email protected]> writes: > > > Bool is a more appropriate type for this value. > > Move the member down in the struct to keep the > > bool type members together and remove a hole. > > Does gcc even attempt to pack bools? Aren't they basically int types?
It's impdef, I think, but it'll typically be a 1 byte integer rather than a 4 byte integer, with the usual struct packing rules for 1 byte type sizes. -- PMM
