view graal/com.oracle.truffle.sl.test/tests/ControlFlow.sl @ 18138:4c49f062d136

Truffle: corrected references to @SlowPath (now @TruffleBoundary).
author Danilo Ansaloni <danilo.ansaloni@oracle.com>
date Tue, 21 Oct 2014 11:23:37 +0200
parents ff3136ecb5a7
children
line wrap: on
line source

function foo() {}
function bar() {}

function main() {  
  foo();
  if (1 < 2) {
    bar();
    return 1;
  }
}