C syntax or binary optimized syntax?
- by Dpp
Let's take an simple example of two lines supposedly doing the same thing:
if (value = 96 || value < 0)
...
or
if (value & ~ 95)
...
Say 'If's are costly in a loop of thousands of iterations, is it better to keep with the traditional C syntax or better to find a binary optimized one if possible?