view graal/com.oracle.truffle.sl.test/tests/Div.sl @ 14055:89bbedfe0ad3

Direct LIR generation: refactoring alternative compilation path in GraalCompilerTest.
author Josef Eisl <josef.eisl@jku.at>
date Wed, 05 Mar 2014 10:12:35 +0100
parents b16ec83edc73
children
line wrap: on
line source

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