view graal/com.oracle.truffle.sl.test/tests/Div.sl @ 13858:6b91134526a7

Truffle: disable (most) optimistic optimizations (profile is not reliable in hosted mode)
author Andreas Woess <andreas.woess@jku.at>
date Mon, 03 Feb 2014 15:49:58 +0100
parents b16ec83edc73
children
line wrap: on
line source

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