Rework code to use Iop_ClzNat32 instead of the deprecated Iop_Clz32.
Iop_Clz32 is used to implement the CLZ insn which behaves naturally
when the input is 0: CLZ(0) == 32
So it seems as if using Iop_Clz32 is wrong because it has undefined
behaviour when the input value is 0. However, the VEX pipeline
does this: