view graal/com.oracle.truffle.sl.test/tests/Loop.sl @ 19657:dcfdf9eb8570

Fix cycle in lowered graph for atomic read write.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Mon, 02 Mar 2015 16:31:37 +0100
parents e34d5cca7496
children
line wrap: on
line source

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