Title: [209872] trunk/Source/_javascript_Core
Revision
209872
Author
[email protected]
Date
2016-12-15 14:07:10 -0800 (Thu, 15 Dec 2016)

Log Message

Turn on WebAssembly by default
https://bugs.webkit.org/show_bug.cgi?id=165918

Reviewed by Saam Barati.

* runtime/Options.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (209871 => 209872)


--- trunk/Source/_javascript_Core/ChangeLog	2016-12-15 21:26:08 UTC (rev 209871)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-12-15 22:07:10 UTC (rev 209872)
@@ -1,3 +1,12 @@
+2016-12-15  Keith Miller  <[email protected]>
+
+        Turn on WebAssembly by default
+        https://bugs.webkit.org/show_bug.cgi?id=165918
+
+        Reviewed by Saam Barati.
+
+        * runtime/Options.h:
+
 2016-12-15  Konstantin Tokarev  <[email protected]>
 
         Added missing override and final specifiers

Modified: trunk/Source/_javascript_Core/runtime/Options.h (209871 => 209872)


--- trunk/Source/_javascript_Core/runtime/Options.h	2016-12-15 21:26:08 UTC (rev 209871)
+++ trunk/Source/_javascript_Core/runtime/Options.h	2016-12-15 22:07:10 UTC (rev 209872)
@@ -416,7 +416,7 @@
     v(bool, useSourceProviderCache, true, Normal, "If false, the parser will not use the source provider cache. It's good to verify everything works when this is false. Because the cache is so successful, it can mask bugs.") \
     v(bool, useCodeCache, true, Normal, "If false, the unlinked byte code cache will not be used.") \
     \
-    v(bool, useWebAssembly, false, Normal, "Expose the WebAssembly global object.") \
+    v(bool, useWebAssembly, true, Normal, "Expose the WebAssembly global object.") \
 
 enum OptionEquivalence {
     SameOption,
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to