view graal/com.oracle.truffle.sl.test/tests/ControlFlow.sl @ 16977:69f213fa0814

[SPARC] initial unittest whitelist (all tests enabled).
author Josef Eisl <josef.eisl@jku.at>
date Wed, 27 Aug 2014 15:37:18 +0200
parents ff3136ecb5a7
children
line wrap: on
line source

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

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