Is this a bug, or broken code?
enum state { HELLO, MUM };
int main()
{
enum state __attribute__ ((mode (__byte__))) a;
a = HELLO;
return 0;
}
Compiles fine with 3.4.2, but 3.4.3 gives
test.c: In function `main':
test.c:6: error: mode `byte' applied to inappropriate type
Andrew Walrond