blob: d7767ef98b05fa6412beb2ff292222a7237bff0b [file] [log] [blame] [edit]
var asm = (function(global, env, buffer) {
"use asm";
function a()
{
return 0;
}
function b()
{
return 0;
}
function c()
{
a();
return;
}
function d()
{
b();
// We expect that b gets replaced by a below
var f = [b];
e();
return;
}
})(asmGlobalArg, asmLibraryArg, buffer);
// {"b":"a"}