(As per Stefan's answer, I'm assuming you're asking about the C version inspired by the Verilog version, not about doing this in Verilog.)
On many architectures, this is actually worse, because the bit shift takes an extra instruction while the addition for the loop variable is completely free.
Completely?
Yes. Because there are, on many architectures, single instructions that decrement a counter and branch if it is nonzero -- and these instructions take just as much time as any other compare-and-branch instruction. Whereas, if you're doing a shift, that takes an extra instruction cycle. It's even worse if your platform doesn't have a "compare equal and branch" instruction -- and not all of them do; some make you subtract and compare to zero in two instructions.
Even on a RISC platform with no decrement-compare-branch instruction, the countdown loop is probably faster because you can simply subtract (one instruction) and use the branch-if-nonzero instruction -- whereas, in your loop, you need a shift (one instruction) and a bitwise-and (one instruction) before the branch-if-zero. And that's assuming you even have a branch-if-zero.
Moreover, for a simple for (i = 0; i < N; i++) loop, it's trivial for the compiler to convert it to a "count down to 0" loop if that's faster -- you rarely need to even do that bit of cleverness yourself.
LOOPfamily instructions. – Hristo Iliev May 25 '12 at 20:29