view graal/com.oracle.truffle.sl.test/tests/DefineFunction.sl @ 16905:a85d43d86ea1

indirect through NodeClass when looking up the HSAIL lowering strategy map
author Doug Simon <doug.simon@oracle.com>
date Sat, 23 Aug 2014 16:55:56 +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();
}