view graal/com.oracle.truffle.sl.test/tests/DefineFunction.sl @ 13784:219a84093dda

moved HSAIL compilation harness logic into HSAILHotSpotBackend and deleted HSAILCompilationResult
author Doug Simon <doug.simon@oracle.com>
date Mon, 27 Jan 2014 20:24:12 +0100
parents e34d5cca7496
children b16ec83edc73
line wrap: on
line source

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

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

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