view graal/com.oracle.truffle.sl.test/tests/Mul.sl @ 21438:a4f376f516dc

AMD64Move: refactor #const2stack and add support for short and byte.
author Josef Eisl <josef.eisl@jku.at>
date Wed, 20 May 2015 17:30:34 +0200
parents b16ec83edc73
children
line wrap: on
line source

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