summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1158632.js
blob: b80dd0351d82fa260cfa2f2e64bb2f1054b0ef6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
for (var j = 0; j < 1; ++j) {
  function f(x) {
    x = 4294967295 >>> 4294967295 % x
    switch (-1) {
      case 1:
      // case 0:
      case -1:
        x = 0;
      // default:
    }
  }
  f();
}