view graal/com.oracle.graal.truffle.test/sl/TestOSR.sl @ 21803:30b03297ba94

change phase order (ConvertDeoptimizeToGuard earlier, PEA after loop peeling/unswitching)
author Lukas Stadler <lukas.stadler@oracle.com>
date Tue, 09 Jun 2015 11:06:32 +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();
}