summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1201469.js
blob: 5c709a9073395af9508faf9c39f662e54e84766a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
f = (function() {
    "use asm";
    var a;
    function f() {
        var b = -1;
    }
    return f;
})();
for (var j = 0; j < 1; ++j)
    f();
setJitCompilerOption('ion.forceinlineCaches', 1);
Math.fround(
    Math.fround()
);
for (var j = 0; j < 1; ++j)
    (function() {})();