[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
#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. */