can I trust that the C compiler does modulo 2^n each time I access a bit field? Or is there any compiler/optimisation where a code like the one below would not print out Overflow?
struct {
uint8_t foo:2;
} G;
G.foo = 3;
G.foo++;
if(G.foo == 0) {
printf("Overflow\n");
}
Thanks in Advance, Florian
Yes, you can trust the C compiler to do the right thing here, as long as the bit field is declared with an unsigned type, which you have with
uint8_t
. From the C99 standard §6.2.6.1/3:From §6.7.2.1/9:
And from §6.2.5/9 (emphasis mine):
So yes, you can be sure that any standards-conforming compiler will have
G.foo
overflow to 0 without any other unwanted side effects.