summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug714397.js
blob: 6da4fac9543269152a5f14a373af3c9e8ce5b4d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Don't assert. Reduced from a modified SS 1.0 crypto-md5.

function g()
{
  return 0;
}

function f()
{
  for(var i = 0; i < 100; i++) {
    g(0);
    g(0);
  }
}


f();