view graal/com.oracle.truffle.sl.test/tests/ControlFlow.sl @ 14812:20dcae7f93eb

Introduce LIRGeneratorCommon and NodeBasedLIRGenerator interfaces.
author Josef Eisl <josef.eisl@jku.at>
date Wed, 19 Mar 2014 13:35:13 +0100
parents ff3136ecb5a7
children
line wrap: on
line source

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

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