David Aguilar <davvid@xxxxxxxxx> writes: >> + if (sizeof(long) == 8) { > > Isn't the whole point of this code to be fast? > > This should be a compile-time check... conditionals hurt perf. Depends on how good your compiler is, no? The above if () selects based on a constant expression, so on 64-bit archs with a good compiler, there won't be a jump instruction nor a single opcode for the else clause. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html