view graal/com.oracle.truffle.sl.test/tests/Sub.sl @ 21510:0ee2ed36d079

Backend: add #newRegisterAllocationConfig.
author Josef Eisl <josef.eisl@jku.at>
date Wed, 27 May 2015 12:12:22 +0200
parents b16ec83edc73
children
line wrap: on
line source

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