Enable JIT for WinCE.
authorSérgio Martins <sergio.martins@kdab.com>
Mon, 4 Nov 2013 15:58:11 +0000 (15:58 +0000)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Mon, 4 Nov 2013 19:42:37 +0000 (20:42 +0100)
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>
src/qml/jsruntime/qv4global_p.h

index e0f51d2..53b306a 100644 (file)
@@ -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