view graal/com.oracle.truffle.sl.test/tests/LoopInvalidate.sl @ 21438:a4f376f516dc

AMD64Move: refactor #const2stack and add support for short and byte.
author Josef Eisl <josef.eisl@jku.at>
date Wed, 20 May 2015 17:30:34 +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));  
}