6.10 __CLZ Intrinsic Function
Inserts a CLZ instruction. If the CLZ instruction is not available, a separate sequence of instructions is inserted to achieve the same result.
Suggested Replacement
__CLZ
Caveats
None.
Examples
Consider migrating IAR code such as:
__CLZ(2);
to MPLAB XC codes
similar to:__CLZ(2);
Further Information
None.