Removed #elif defined(__INTEL_COMPILER) because it is disabled at the moment

This commit is contained in:
matze 2016-09-02 20:35:08 +02:00
parent 8af8c4d0aa
commit 0acd818efc

View File

@ -55,7 +55,7 @@ inline unsigned int trailingZeros(unsigned int value) {
return _tzcnt_u32(value);
#elif defined(_GCC)
return __builtin_ctz(value);
#elif defined(__INTEL_COMPILER)
//#elif defined(__INTEL_COMPILER)
//return _bit_scan_reverse(value);
#else
static const int MultiplyDeBruijnBitPosition[32] = {