I have some code that uses gcc intrinsics. I would like to include code in case the intrinsic is missing. How can I do this?
#ifdef __builtin_ctzll
does not work.
I have some code that uses gcc intrinsics. I would like to include code in case the intrinsic is missing. How can I do this?
#ifdef __builtin_ctzll
does not work.