Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review: https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 // Don't assert.
2 function $(stdlib, foreign, heap) {
3 "use asm";
4 var Float64ArrayView = new stdlib.Float64Array(heap);
5 function f() {}
6 return f
7 }
8
9 if (typeof SharedArrayBuffer !== "undefined")
10 $(this, {}, new SharedArrayBuffer(4096));