mirror of
https://github.com/opencv/opencv.git
synced 2024-11-29 22:00:25 +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);
|
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] = {
|
||||||
|
Loading…
Reference in New Issue
Block a user