Skip to content

Commit 05d7181

Browse files
authored
Merge branch 'master' into sw/fix_coverity
2 parents 4508f84 + 6e7df3a commit 05d7181

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

common/simd/arm/sse2neon.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9038,7 +9038,7 @@ FORCE_INLINE int _sse2neon_sido_negative(int res, int lb, int imm8, int bound)
90389038
FORCE_INLINE int _sse2neon_clz(unsigned int x)
90399039
{
90409040
#if _MSC_VER
9041-
DWORD cnt = 0;
9041+
unsigned long cnt = 0;
90429042
if (_BitScanForward(&cnt, x))
90439043
return cnt;
90449044
return 32;
@@ -9050,7 +9050,7 @@ FORCE_INLINE int _sse2neon_clz(unsigned int x)
90509050
FORCE_INLINE int _sse2neon_ctz(unsigned int x)
90519051
{
90529052
#if _MSC_VER
9053-
DWORD cnt = 0;
9053+
unsigned long cnt = 0;
90549054
if (_BitScanReverse(&cnt, x))
90559055
return 31 - cnt;
90569056
return 32;

0 commit comments

Comments
 (0)