view graal/com.oracle.truffle.sl.test/tests/Loop.sl @ 21026:931b0acc8d2e

Fixed incorrect definition of AbstractBeginNode#anchored and AbstractBeginNode#proxies utility methods.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Mon, 20 Apr 2015 14:19:17 +0200
parents e34d5cca7496
children
line wrap: on
line source

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