view graal/com.oracle.truffle.sl.test/tests/LoopPrint.sl @ 21375:fef56da8474e

Relax assertion to allow MethodIdHolders that have pre-assigned ids
author Christian Wimmer <christian.wimmer@oracle.com>
date Thu, 14 May 2015 15:59:14 -0700
parents afd6fa5e8229
children
line wrap: on
line source

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

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