summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/asm.js/testBug1046688.js
blob: 8c71543bea2277973bb60446158169a4212e3980 (plain)
1
2
3
4
5
6
7
8
9
10
11
enableGeckoProfiling();
for (var j = 0; j < 1000; ++j) {
  (function(stdlib) {
    "use asm";
    var pow = stdlib.Math.pow;
    function f() {
        return +pow(.0, .0)
    }
    return f;
})(this)()
}