Title: [129559] trunk/Source/WTF
- Revision
- 129559
- Author
- [email protected]
- Date
- 2012-09-25 15:02:18 -0700 (Tue, 25 Sep 2012)
Log Message
Do not enable DFG JIT for COMPILER(MSVC).
The current code does not support MSVC inline assembler, so disable it for now.
* wtf/Platform.h:
Modified Paths
Diff
Modified: trunk/Source/WTF/ChangeLog (129558 => 129559)
--- trunk/Source/WTF/ChangeLog 2012-09-25 21:54:16 UTC (rev 129558)
+++ trunk/Source/WTF/ChangeLog 2012-09-25 22:02:18 UTC (rev 129559)
@@ -1,3 +1,11 @@
+2012-09-25 Patrick Gansterer <[email protected]>
+
+ Do not enable DFG JIT for COMPILER(MSVC).
+
+ The current code does not support MSVC inline assembler, so disable it for now.
+
+ * wtf/Platform.h:
+
2012-09-25 Pratik Solanki <[email protected]>
Remove HAVE_SBRK since we never set use_sbrk to true
Modified: trunk/Source/WTF/wtf/Platform.h (129558 => 129559)
--- trunk/Source/WTF/wtf/Platform.h 2012-09-25 21:54:16 UTC (rev 129558)
+++ trunk/Source/WTF/wtf/Platform.h 2012-09-25 22:02:18 UTC (rev 129559)
@@ -912,7 +912,7 @@
#define ENABLE_LLINT 1
#endif
-#if !defined(ENABLE_DFG_JIT) && ENABLE(JIT)
+#if !defined(ENABLE_DFG_JIT) && ENABLE(JIT) && !COMPILER(MSVC)
/* 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))
#define ENABLE_DFG_JIT 1
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes