view graal/com.oracle.truffle.sl.test/tests/ControlFlow.sl @ 18557:80a6b4a23418

removed a usage of HotSPotGraalRuntime.unsafeReadWord()
author Doug Simon <doug.simon@oracle.com>
date Wed, 26 Nov 2014 22:39:03 +0100
parents ff3136ecb5a7
children
line wrap: on
line source

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

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