summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1877357.js
blob: b1e0d9c68616fcc21f78feafe1564ebf883590ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
function f(x) {
  let y = x | 0;
  z = 1;
  Function((x | 0 ? 1 : 9999999999) ? (z ? y : 9999999999) : 1);
}
f(1);
f(1);
f(1);
f(1);
f(1);
f(1);
f(1);
f(1);
f(9999999999);
f(1);
f();
f(9007199254740993);