view graal/com.oracle.truffle.sl.test/tests_instrumentation/Instrumentation_assnCount.sl @ 21415:c435184ca071

Prefer ipv4 on dacapo benchmark (was set to false before)
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Tue, 19 May 2015 09:51:55 +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);
}