summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug872331.js
blob: fe32ea22200ad34f93acb29f95a9c45d9a987e5c (plain)
1
2
3
4
5
6
7
8
9
10
function d(t) {
  if (t >= undefined) {}
}
function s() {
  d(null);
}
d(3);
s();
s();