* Adrian Moreno via Gcc-help: > So here I do not know what the compiler would think about "pos" if it > happens to point to some invalid stack address. In such cases, the compiler typically assumes that the code in question is never executed. This means that the comparison does not need to be performed, among other things. Thanks, Florian