blob: 45f4e848b12d7ab2931840954b2b4c40798b141a (
plain)
1
2
3
4
5
6
7
8
9
10
|
// |jit-test| skip-if: !getBuildConfiguration()['arm-simulator']
// Single-step profiling currently only works in the ARM simulator
load(libdir + "asm.js");
enableGeckoProfiling();
enableSingleStepProfiling();
var m = asmCompile(USE_ASM + 'function f() {} return f');
asmLink(m)();
asmLink(m)();
|