summaryrefslogtreecommitdiffstats
path: root/src/corelib
diff options
context:
space:
mode:
authorJoona Petrell <joona.t.petrell@nokia.com>2010-12-09 01:10:54 (GMT)
committerJoona Petrell <joona.t.petrell@nokia.com>2010-12-09 01:10:54 (GMT)
commit6efa3aa2fb9694e3275fac7412f9f930c715c628 (patch)
treec6ac25ee98e0b1438385efe8bcbf435b9c0ed25a /src/corelib
parent58ae252e5555dc379b4ed500532bc51ff7bebc25 (diff)
parentec44803109910127657b214f4556651a9619430d (diff)
downloadQt-6efa3aa2fb9694e3275fac7412f9f930c715c628.zip
Qt-6efa3aa2fb9694e3275fac7412f9f930c715c628.tar.gz
Qt-6efa3aa2fb9694e3275fac7412f9f930c715c628.tar.bz2
Merge qtsoftware:qt/qt.git#4.7 into qtsoftware:qt/qt-qml.git#4.7
Conflicts: src/s60installs/eabi/QtGuiu.def
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/tools/qsimd.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/corelib/tools/qsimd.cpp b/src/corelib/tools/qsimd.cpp
index 63ebafb..bc5e9e4 100644
--- a/src/corelib/tools/qsimd.cpp
+++ b/src/corelib/tools/qsimd.cpp
@@ -285,7 +285,13 @@ static inline uint detectProcessorFeatures()
uint features = MMX|SSE|SSE2|CMOV;
uint feature_result = 0;
-#if defined(Q_CC_GNU)
+#if defined (Q_OS_WIN64)
+ {
+ int info[4];
+ __cpuid(info, 1);
+ feature_result = info[2];
+ }
+#elif defined(Q_CC_GNU)
quint64 tmp;
asm ("xchg %%rbx, %1\n"
"cpuid\n"
@@ -294,12 +300,6 @@ static inline uint detectProcessorFeatures()
: "a" (1)
: "%edx"
);
-#elif defined (Q_OS_WIN64)
- {
- int info[4];
- __cpuid(info, 1);
- feature_result = info[2];
- }
#endif
if (feature_result & (1u))