view graal/com.oracle.truffle.sl.test/tests/Div.sl @ 17037:ff0ec169843b

Fixed loop phis with itself as single back value did not canonicalize. (contributed by Lukas Stadler)
author Christian Humer <christian.humer@gmail.com>
date Wed, 03 Sep 2014 14:58:53 +0200
parents b16ec83edc73
children
line wrap: on
line source

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