blob: a8784264151607102657d0acd537d6b127b3b373 [file] [log] [blame]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
function AsmModule(stdlib,foreign,buffer) {
"use asm";
var m1 = stdlib.Math.fround;
//views
var HEAP64 =new stdlib.Float64Array(buffer);
function f1(){
var y = 0.5
var x = m1(1.5);
HEAP64[1] = x;
return +(HEAP64[1])
}
return f1;
}
var global = {Math:Math,Float64Array:Float64Array}
var env = {}
var buffer = new ArrayBuffer(1<<20);
var asmModule = AsmModule(global,env,buffer);
WScript.Echo(asmModule());
WScript.Echo(asmModule());