view graal/com.oracle.truffle.sl.test/tests/Loop.sl @ 15479:4f397be8f424

TruffleDSL: NodeCodeGenerator: remove always-true assertion
author Andreas Woess <andreas.woess@jku.at>
date Fri, 02 May 2014 17:07:44 +0200
parents e34d5cca7496
children
line wrap: on
line source

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