1 enum e
{ ZERO
, ONE
, TWO
};
4 enum e
__attribute__ ((mode(__byte__
))) b
;
5 enum e
__attribute__ ((mode(__word__
))) w
;
6 enum e
__attribute__ ((mode(__TI__
))) t
;
11 _Static_assert(sizeof(s
.b
) == 1, "");
12 _Static_assert(sizeof(s
.w
) == sizeof(long), "");
13 _Static_assert(sizeof(s
.t
) == sizeof(long long), "");
16 * check-name: enum+mode