Title: [213133] releases/WebKitGTK/webkit-2.16/Source/_javascript_Core
Revision
213133
Author
carlo...@webkit.org
Date
2017-02-28 01:11:14 -0800 (Tue, 28 Feb 2017)

Log Message

Merge r212900 - Unreviewed, fix the cloop build. Needed a #if.

* jit/ExecutableAllocator.cpp:

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.16/Source/_javascript_Core/ChangeLog (213132 => 213133)


--- releases/WebKitGTK/webkit-2.16/Source/_javascript_Core/ChangeLog	2017-02-28 09:10:08 UTC (rev 213132)
+++ releases/WebKitGTK/webkit-2.16/Source/_javascript_Core/ChangeLog	2017-02-28 09:11:14 UTC (rev 213133)
@@ -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: releases/WebKitGTK/webkit-2.16/Source/_javascript_Core/jit/ExecutableAllocator.cpp (213132 => 213133)


--- releases/WebKitGTK/webkit-2.16/Source/_javascript_Core/jit/ExecutableAllocator.cpp	2017-02-28 09:10:08 UTC (rev 213132)
+++ releases/WebKitGTK/webkit-2.16/Source/_javascript_Core/jit/ExecutableAllocator.cpp	2017-02-28 09:11:14 UTC (rev 213133)
@@ -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