summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1001378.js
blob: f5953af24baa615f573c3fd5f41e9977176e2310 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Test that we don't incorrectly optimize out argument slots from resume
// points.

function boo() {
  return foo.arguments[0];
}
function foo(a,b,c) {
  if (a == 0) {
    a ^= "";
    return boo();
  }
}
function inlined() {
  return foo.apply({}, arguments);
}
assertEq(inlined(1,2,3), undefined);
assertEq(inlined(0,2,3), 0);