view graal/com.oracle.truffle.sl.test/tests/LoopPrint.sl @ 17200:56458afc02a3

Use common nodes for integer and floating point arithmetic.
author Roland Schatz <roland.schatz@oracle.com>
date Wed, 24 Sep 2014 14:57:03 +0200
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));  
}