view graal/com.oracle.truffle.sl.test/tests/Loop.sl @ 15860:3e55e9614af7

[inlining] check maxMethodPerInlining after discarding methods below threshold
author Miguel Garcia <miguel.m.garcia@oracle.com>
date Thu, 22 May 2014 14:15:01 +0200
parents e34d5cca7496
children
line wrap: on
line source

function main() {  
  i = 0;  
  while (i < 1000) {  
    i = i + 1;  
  }  
  return i;  
}