view graal/com.oracle.graal.truffle.test/sl/TestOSR.sl @ 21358:19801a65cf57

Truffle/Instrumentation: NPE guard
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Tue, 12 May 2015 18:26:52 -0700
parents e8e55ebcf069
children
line wrap: on
line source

function test() {
  i = 0;
  sum = 0;  
  while (i < 300000) { 
    sum = sum +  i;
    i = i + 1;  
  }
  return sum;
}

function main() {  
  test();
}