Title: [195956] trunk/Source/_javascript_Core
Revision
195956
Author
[email protected]
Date
2016-02-01 03:26:50 -0800 (Mon, 01 Feb 2016)

Log Message

Unreviewed speculative buildfix.

* dfg/DFGCommon.h: FTL_USES_B3 should be false if FTL JIT is disabled.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (195955 => 195956)


--- trunk/Source/_javascript_Core/ChangeLog	2016-02-01 11:20:19 UTC (rev 195955)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-02-01 11:26:50 UTC (rev 195956)
@@ -1,3 +1,9 @@
+2016-02-01  Csaba Osztrogonác  <[email protected]>
+
+        Unreviewed speculative buildfix.
+
+        * dfg/DFGCommon.h: FTL_USES_B3 should be false if FTL JIT is disabled.
+
 2016-01-31  Dan Bernstein  <[email protected]>
 
         [Cocoa] Remove unused definition of HAVE_HEADER_DETECTION_H

Modified: trunk/Source/_javascript_Core/dfg/DFGCommon.h (195955 => 195956)


--- trunk/Source/_javascript_Core/dfg/DFGCommon.h	2016-02-01 11:20:19 UTC (rev 195955)
+++ trunk/Source/_javascript_Core/dfg/DFGCommon.h	2016-02-01 11:26:50 UTC (rev 195956)
@@ -37,7 +37,7 @@
 
 // We are in the middle of a transition from LLVM to B3 as the backend for the FTL. This flag will go
 // away once that transition is finished. For now, we enable B3 only on some platforms.
-#if CPU(X86_64) && PLATFORM(MAC)
+#if CPU(X86_64) && PLATFORM(MAC) && ENABLE(FTL_JIT)
 #define FTL_USES_B3 1
 #else
 #define FTL_USES_B3 0
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to