view graal/com.oracle.truffle.sl.test/tests/Arithmetic.sl @ 16373:74e93f5ba4f3

LSRA spill optimization: consider all spill blocks not only use positions.
author Josef Eisl <josef.eisl@jku.at>
date Wed, 11 Jun 2014 20:24:10 +0200
parents b16ec83edc73
children
line wrap: on
line source

function main() {  
  println(3 + 4 - 2);  
  println(3 - 4 + 2);  
  println(3 - 4 - 2);  
  println(3 * 4 + 2);  
  println(3 + 4 * 2);  
  println(3 + (4 - 2));  
  println(3 - (4 + 2));  
  println(3 - (4 - 2));  
  println(3 * (4 + 2));  
  println(3 + (4 * 2));  
}