summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug729902-1.js
blob: 5b214fb98ba180f8015aafba2cbd7ef54e3bf170 (plain)
1
2
3
4
5
6
7
8
9
10
11
var x = 2;
outer:
while (x == 10) {
  while (x == 10) {
    if (x < (null ))
      continue outer;
    while (x < 10) {
      ((function() {}).abstract) = 0;
    }
  }
}