view graal/com.oracle.truffle.sl.test/tests/LoopCall.sl @ 21620:d06ff213a181

Small fix to NestedLoopTest: Make sure the placeholder methods cannot be inlined.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 31 May 2015 23:05:25 +0200
parents afd6fa5e8229
children
line wrap: on
line source

function add(a, b) {
  return a + b;
}

function loop(n) {
  i = 0;
  while (i < n) {  
    i = add(i, 1);  
  }
  return i;
}

function main() {
  i = 0;
  while (i < 20) {
    loop(1000);
    i = i + 1;
  }
  println(loop(1000));  
}