1struct HasBigBitfield {
2  __int128 x : 128;
3};
4
5
6struct HasTwoBigBitfields {
7  __int128 x : 80;
8  __int128 y : 48;
9};
10