view graal/com.oracle.truffle.sl.test/tests/Arithmetic.sl @ 19591:54e696f67c86

constopt.DefUseTree: remove ValuePosition.
author Josef Eisl <josef.eisl@jku.at>
date Tue, 24 Feb 2015 19:45:16 +0100
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));  
}