aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4global_p.h
diff options
context:
space:
mode:
authorSérgio Martins <sergio.martins@kdab.com>2013-11-04 15:58:11 +0000
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-11-04 20:42:37 +0100
commit434c6e2b798c4e73f8833e734b4e20005885852a (patch)
treeabfbed1fc161d869f03fa2b29ac78f9bdaf668fe /src/qml/jsruntime/qv4global_p.h
parentd87c1471f1f61133edad313d5159f9fee9e938c5 (diff)
Enable JIT for WinCE.
Demos work, 120 unit-tests pass, some failures unrelated to JIT. Change-Id: I641d31cc08dc7961fa46d7b95666178699317f61 Reviewed-by: Andreas Holzammer <andreas.holzammer@kdab.com> Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4global_p.h')
-rw-r--r--src/qml/jsruntime/qv4global_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jsruntime/qv4global_p.h b/src/qml/jsruntime/qv4global_p.h
index e0f51d22e5..53b306a1fe 100644
--- a/src/qml/jsruntime/qv4global_p.h
+++ b/src/qml/jsruntime/qv4global_p.h
@@ -84,8 +84,8 @@ inline double trunc(double d) { return d > 0 ? floor(d) : ceil(d); }
// Black list some platforms
#if defined(V4_ENABLE_JIT)
-#if defined(Q_OS_WINCE) || defined(Q_OS_IOS) || defined(Q_OS_WIN64)
- #undef V4_ENABLE_JIT
+#if defined(Q_OS_IOS) || defined(Q_OS_WIN64)
+# undef V4_ENABLE_JIT
#endif
#endif