view graal/com.oracle.truffle.sl.test/tests_instrumentation/Instrumentation_assnCount.sl @ 21492:9e5947d24e63

Truffle-DSL: pow example should not use @ExplodeLoop.
author Christian Humer <christian.humer@gmail.com>
date Tue, 26 May 2015 20:02:07 +0200
parents 7661cc464239
children
line wrap: on
line source

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

function main() {
  count = loop(100);
}