view graal/com.oracle.truffle.sl.test/tests/Mul.sl @ 13916:77aa8ef31649

Truffle: canonicalize inlined invoke usages during partial evaluation
author Andreas Woess <andreas.woess@jku.at>
date Sat, 08 Feb 2014 06:38:33 +0100
parents b16ec83edc73
children
line wrap: on
line source

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