view graal/com.oracle.truffle.sl.test/tests/LoopPrint.sl @ 13784:219a84093dda

moved HSAIL compilation harness logic into HSAILHotSpotBackend and deleted HSAILCompilationResult
author Doug Simon <doug.simon@oracle.com>
date Mon, 27 Jan 2014 20:24:12 +0100
parents e34d5cca7496
children b16ec83edc73
line wrap: on
line source

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