Commit 0acd818e authored by matze's avatar matze

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

parent 8af8c4d0
...@@ -55,7 +55,7 @@ inline unsigned int trailingZeros(unsigned int value) { ...@@ -55,7 +55,7 @@ inline unsigned int trailingZeros(unsigned int value) {
return _tzcnt_u32(value); return _tzcnt_u32(value);
#elif defined(_GCC) #elif defined(_GCC)
return __builtin_ctz(value); return __builtin_ctz(value);
#elif defined(__INTEL_COMPILER) //#elif defined(__INTEL_COMPILER)
//return _bit_scan_reverse(value); //return _bit_scan_reverse(value);
#else #else
static const int MultiplyDeBruijnBitPosition[32] = { static const int MultiplyDeBruijnBitPosition[32] = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment