view graal/com.oracle.truffle.sl.test/tests/Mul.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() {  
  print(3 * 4);  
  print(3 * 4000000000000);  
  print(3000000000000 * 4);  
  print(3000000000000 * 4000000000000);  
}