Disable DFG JIT for X86 with Linux
authorHojong Han <hojong.han@samsung.com>
Fri, 31 Aug 2012 05:21:34 +0000 (14:21 +0900)
committerHojong Han <hojong.han@samsung.com>
Fri, 31 Aug 2012 05:21:34 +0000 (14:21 +0900)
[Version] TIZEN_2.0b_RC2
[Project] N/A
[Title] Disable DFG JIT for X86 with Linux
[BinType] N/A
[Customer] N/A
[Issue#] N_SE-8077
[Problem] Force close occur when drag on android.com page
[Cause] DFG JIT enabled before stabilization tests
[Solution] Disable DFG JIT option
[Team] JavaScript Engine
[Developer] hojong.han
[Request] N/A
[Horizonal expansion] N/A
[SCMRequest] N/A]

Change-Id: I333124cee2916ced33fbbd67567bf5c662f65409

Source/WTF/wtf/Platform.h

index 9c9be9d..220235c 100644 (file)
 
 #if !defined(ENABLE_DFG_JIT) && ENABLE(JIT)
 /* Enable the DFG JIT on X86 and X86_64.  Only tested on Mac and GNU/Linux. */
-#if (CPU(X86) || CPU(X86_64)) && (PLATFORM(MAC) || OS(LINUX))
+#if (CPU(X86) || CPU(X86_64)) && (PLATFORM(MAC) || OS(LINUX)) && !OS(TIZEN)
 #define ENABLE_DFG_JIT 1
 #endif
 /* Enable the DFG JIT on ARMv7.  Only tested on iOS. */