Fixed QSimd WindowsCE build
Change-Id: I94de251cf1f283d30f92d0fb9d37a1646765cbdd Reviewed-by: Andreas Holzammer <andreas.holzammer@kdab.com> Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
This commit is contained in:
parent
2b130d0cf6
commit
14ea50598f
@ -46,9 +46,12 @@
|
||||
#if defined(Q_OS_WIN)
|
||||
# if defined(Q_OS_WINCE)
|
||||
# include <qt_windows.h>
|
||||
# include <cmnintrin.h>
|
||||
# endif
|
||||
# if !defined(Q_CC_GNU)
|
||||
# include <intrin.h>
|
||||
# ifndef Q_OS_WINCE
|
||||
# include <intrin.h>
|
||||
# endif
|
||||
# endif
|
||||
#elif defined(Q_OS_LINUX) && defined(__arm__)
|
||||
#include "private/qcore_unix_p.h"
|
||||
@ -384,8 +387,12 @@ static const uint minFeature = None
|
||||
#else
|
||||
int ffs(int i)
|
||||
{
|
||||
#ifndef Q_OS_WINCE
|
||||
unsigned long result;
|
||||
return _BitScanForward(&result, i) ? result : 0;
|
||||
#else
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
#endif // Q_OS_WIN
|
||||
|
Loading…
Reference in New Issue
Block a user