Modified: tags/Safari-603.1.18.0.1/Source/_javascript_Core/ChangeLog (210454 => 210455)
--- tags/Safari-603.1.18.0.1/Source/_javascript_Core/ChangeLog 2017-01-06 20:38:39 UTC (rev 210454)
+++ tags/Safari-603.1.18.0.1/Source/_javascript_Core/ChangeLog 2017-01-06 20:46:24 UTC (rev 210455)
@@ -1,3 +1,15 @@
+2017-01-06 Babak Shafiei <[email protected]>
+
+ Merge r210444.
+
+ 2017-01-06 Matthew Hanson <[email protected]>
+
+ Disable WebAssembly. rdar://problem/29890343
+
+ Landed on behalf of JF Bastien.
+
+ * runtime/Options.h:
+
2016-12-19 Babak Shafiei <[email protected]>
Merge r210010.
Modified: tags/Safari-603.1.18.0.1/Source/_javascript_Core/runtime/Options.h (210454 => 210455)
--- tags/Safari-603.1.18.0.1/Source/_javascript_Core/runtime/Options.h 2017-01-06 20:38:39 UTC (rev 210454)
+++ tags/Safari-603.1.18.0.1/Source/_javascript_Core/runtime/Options.h 2017-01-06 20:46:24 UTC (rev 210455)
@@ -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.") \
enum OptionEquivalence {
SameOption,