view graal/com.oracle.truffle.sl.test/tests/LoopInvalidate.sl @ 15923:d0c7bd38e700

computeBlockOrder: no need to check if block is active, since it's anyway
author Bernhard Urban <bernhard.urban@jku.at>
date Tue, 27 May 2014 12:15:31 +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;
  }
  add("a", "b");
  println(loop(1000));  
}