view graal/com.oracle.truffle.sl.test/tests/DefineFunction.sl @ 18122:a545fb29cb89

Add missing data types to cmove instruction.
author Roland Schatz <roland.schatz@oracle.com>
date Mon, 20 Oct 2014 11:10:15 +0200
parents b16ec83edc73
children
line wrap: on
line source

function foo() {
  println(test(40, 2));
}

function main() {
  defineFunction("function test(a, b) { return a + b; }");
  foo();

  defineFunction("function test(a, b) { return a - b; }");
  foo();
}