From: Sérgio Martins Date: Mon, 4 Nov 2013 15:58:11 +0000 (+0000) Subject: Enable JIT for WinCE. X-Git-Tag: upstream/5.2.1~61 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=434c6e2b798c4e73f8833e734b4e20005885852a;p=platform%2Fupstream%2Fqtdeclarative.git Enable JIT for WinCE. Demos work, 120 unit-tests pass, some failures unrelated to JIT. Change-Id: I641d31cc08dc7961fa46d7b95666178699317f61 Reviewed-by: Andreas Holzammer Reviewed-by: Simon Hausmann --- diff --git a/src/qml/jsruntime/qv4global_p.h b/src/qml/jsruntime/qv4global_p.h index e0f51d2..53b306a 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