Title: [212900] trunk/Source/_javascript_Core
Revision
212900
Author
keith_mil...@apple.com
Date
2017-02-23 10:20:10 -0800 (Thu, 23 Feb 2017)

Log Message

Unreviewed, fix the cloop build. Needed a #if.

* jit/ExecutableAllocator.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (212899 => 212900)


--- trunk/Source/_javascript_Core/ChangeLog	2017-02-23 18:18:11 UTC (rev 212899)
+++ trunk/Source/_javascript_Core/ChangeLog	2017-02-23 18:20:10 UTC (rev 212900)
@@ -1,3 +1,9 @@
+2017-02-23  Keith Miller  <keith_mil...@apple.com>
+
+        Unreviewed, fix the cloop build. Needed a #if.
+
+        * jit/ExecutableAllocator.cpp:
+
 2017-02-22  Carlos Garcia Campos  <cgar...@igalia.com>
 
         Better handle Thread and RunLoop initialization

Modified: trunk/Source/_javascript_Core/jit/ExecutableAllocator.cpp (212899 => 212900)


--- trunk/Source/_javascript_Core/jit/ExecutableAllocator.cpp	2017-02-23 18:18:11 UTC (rev 212899)
+++ trunk/Source/_javascript_Core/jit/ExecutableAllocator.cpp	2017-02-23 18:20:10 UTC (rev 212900)
@@ -26,6 +26,8 @@
 #include "config.h"
 #include "ExecutableAllocator.h"
 
+#if ENABLE(ASSEMBLER)
+
 #include "CodeProfiling.h"
 #include "ExecutableAllocationFuzz.h"
 #include "JSCInlines.h"
@@ -413,3 +415,5 @@
 #endif
     
 }
+
+#endif // ENABLE(ASSEMBLER)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to