view graal/com.oracle.truffle.sl.test/tests/Loop.sl @ 21620:d06ff213a181

Small fix to NestedLoopTest: Make sure the placeholder methods cannot be inlined.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 31 May 2015 23:05:25 +0200
parents e34d5cca7496
children
line wrap: on
line source

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