view graal/com.oracle.truffle.sl.test/tests/Sub.sl @ 21333:a6e1a98f47e2

LinearScan: outsource RegisterAllocation.
author Josef Eisl <josef.eisl@jku.at>
date Tue, 12 May 2015 13:28:48 +0200
parents b16ec83edc73
children
line wrap: on
line source

function main() {  
  println(3 - 4);  
  println(3 - 4000000000000);  
  println(3000000000000 - 4);  
  println(3000000000000 - 4000000000000);  
}