mirror of
https://github.com/opencv/opencv.git
synced 2024-11-26 04:00:30 +08:00
Removed #elif defined(__INTEL_COMPILER) because it is disabled at the moment
This commit is contained in:
parent
8af8c4d0aa
commit
0acd818efc
@ -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] = {
|
||||
|
Loading…
Reference in New Issue
Block a user