Modified: branches/safari-603-branch/Source/_javascript_Core/ChangeLog (210443 => 210444)
--- branches/safari-603-branch/Source/_javascript_Core/ChangeLog 2017-01-06 17:32:21 UTC (rev 210443)
+++ branches/safari-603-branch/Source/_javascript_Core/ChangeLog 2017-01-06 17:55:42 UTC (rev 210444)
@@ -1,5 +1,13 @@
2017-01-06 Matthew Hanson <[email protected]>
+ Disable WebAssembly. rdar://problem/29890343
+
+ Landed on behalf of JF Bastien.
+
+ * runtime/Options.h:
+
+2017-01-06 Matthew Hanson <[email protected]>
+
Merge r210276. rdar://problem/28867002
2017-01-04 Saam Barati <[email protected]>
Modified: branches/safari-603-branch/Source/_javascript_Core/runtime/Options.h (210443 => 210444)
--- branches/safari-603-branch/Source/_javascript_Core/runtime/Options.h 2017-01-06 17:32:21 UTC (rev 210443)
+++ branches/safari-603-branch/Source/_javascript_Core/runtime/Options.h 2017-01-06 17:55:42 UTC (rev 210444)
@@ -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, true, Normal, "Expose the WebAssembly global object.") \
+ v(bool, useWebAssembly, false, Normal, "Expose the WebAssembly global object.") \
v(bool, simulateWebAssemblyLowMemory, false, Normal, "If true, the Memory object won't mmap the full 'maximum' range and instead will allocate the minimum required amount.") \
enum OptionEquivalence {