I've just run across some oddness related to this, too. It seems that the result of a ternary conditional can be treated as an lvalue in gcc 3.3.2, but not in gcc 4.6 (I haven't got more versions ready to hand to narrow it down further). In fact it's not possible to compile gcc 3.3.2 using gcc 4.6 precisely because gcc 4.6 is much pickier about what constitutes an lvalue.
Another example from the gcc 3.3.2 source that doesn't compile with gcc 4.6:
char *x = ...;
*((void**)x)++ = ...;
gcc 4.6 could treat the result of a cast as an lvalue and increment it, but gcc 4.6 will not.
I also don't have the relevant standards to hand to find out of this is something that changed in the official standard or just something that gcc allowed at some stage.
Note also that C++ allows the ternary operator to return an lvalue, though you still can't increment 0. So this is valid C++ but not valid C:
int c = 0, d = 0;
(c?c:d)++;
0++;is executed? I can't even imagine that this compiles. – Nobody Jul 26 '11 at 18:58In function ‘main’: 5:2: error: lvalue required as increment operandWhat is returned when you compile this code withgcc -S code.cpp? – Nobody Jul 26 '11 at 19:04