Your example is rather simple and is indeed easy to condense into a single operation. The general case of a statement like this, though, is not as simple. Take the following, for example:
((++i) % 3 == 0) && ((++i) % 5 == 0)
This variation cannot be simplified down to a single modulus operation as easily (I know this statement has all sorts of other problems with it, but the point is that the problem isn't as simple when you're using anything other than a simple variable reference). Compilers generally won't look to see that your case involves only simple variables and optimize it differently than the general case; they try to keep optimizations consistent and predictable whenever possible.
Update:
The extra cases that you added to your question fall into a completely different class of optimization than your original code snippet. They are both optimized away because they are unreachable code, and can be proven as such at compile-time. Your original question involved re-writing two operations into a single, equivalent operation that is unique from the original. The two snippets you added don't re-write existing code, they only remove code that can never be executed. Compilers are typically very good at identifying and removing dead code.
The optimization that you are seeking is a form of mathematical strength reduction. Most compilers offer some level of MSR optimizations, although how detailed they get will vary based on the compiler and the capabilities of the target platform. For example, a compiler targeting a CPU architecture that does not have a modulus instruction (meaning a potentially-lengthy library function has to be used instead) may optimize statements like these more aggressively. If the target CPU has hardware modulus support, the compiler writer might deem the two or three saved instructions to be too small of a benefit to be worth the time and effort it would take to implement and test the optimization improvements. I have seen this in the past with certain operations that can be done in a single instruction on an x86 CPU (for example) but would require dozens of instructions on a RISC CPU.
ican have side-effects, and the compiler doesn't whether it does or not? – ikegami Apr 18 '12 at 19:07ifrom memory twice? So why do the modulus twice? – ikegami Apr 18 '12 at 19:35