Morel
I'm not convinced by the example.
The compiler will not assume that "i" variable may be reset to zero. "i" is defined in the loop statement, therefore it is obvious that there is no possibility of aliasing between "*p" and "i".
Even if "i" would be a local variable of the function containing the loop, it should be absolutely possible for the compiler to check aliasing between the two.