view graal/com.oracle.graal.truffle.test/sl/TestOSR.sl @ 21061:a671d592a8da

Modify semantics of StressInvokeWithExceptionNode.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Tue, 21 Apr 2015 01:27:08 +0200
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();
}