I just read this SO C++ FAQ about undefined behavior and sequence points and experimented a bit. In the following code gcc-4.5.2 gives me a warning only in the line mentioned in the code comment, although the one line before shows undefined behaviour too, doesn't it? You can't say which operand of addition is executed first (as + is no sequence point). Why does gcc not give me a warning in this line too?
int i=0;
int j=0;
int foo(void) {
i=1;
return i;
}
int main(void) {
i = i + foo();
j = j + (j=1); //Here is a rightly warning
return 0;
}
Thank you for helping.
foomight be defined in another source file, so there would be no way for the compiler to detect this. Or the access might be hidden behind a complex set of pointer dereferences. The compiler can't detect all possible cases of undefined behaviour. – Oli Charlesworth Nov 26 '11 at 10:24