view graal/com.oracle.truffle.sl.test/tests/Loop.sl @ 15974:3a537502f40f

HSAIL: prevent failure to loaded native Okra library from causing unit test failure Contributed-by: Eric Caspole <eric.caspole@amd.com>
author Doug Simon <doug.simon@oracle.com>
date Thu, 29 May 2014 16:12:12 +0200
parents e34d5cca7496
children
line wrap: on
line source

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