blob: 06df012495969e284218778690135bf09010ec6d [file] [log] [blame]
//@ runDefault
if (platformSupportsSamplingProfiler() && $vm.isWasmSupported()) {
load("./sampling-profiler/samplingProfiler.js", "caller relative");
let buf = read("./sampling-profiler/loop.wasm", "binary");
let module = new WebAssembly.Module(buf);
let instance = new WebAssembly.Instance(module);
var wasmEntry = function() {
return instance.exports.loop(10000000);
};
runTest(wasmEntry, ["<?>.wasm-function[0]", "(unknown)", "wasmEntry"]);
}