view graal/com.oracle.truffle.sl.test/tests/ControlFlow.sl @ 15904:09f3fe273640

LSRA: remove IntervalWalker.currentInterval and change the behavior of nextInterval and walkTo(int).
author Josef Eisl <josef.eisl@jku.at>
date Thu, 22 May 2014 20:36:31 +0200
parents ff3136ecb5a7
children
line wrap: on
line source

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

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