view graal/com.oracle.truffle.sl.test/tests/Inlining.sl @ 15459:0dae565d9289

fixed code that ecj had a problem compiling
author Doug Simon <doug.simon@oracle.com>
date Thu, 01 May 2014 18:26:25 +0200
parents 2caa107f51ce
children
line wrap: on
line source


function a() {return 42;}
function b() {return a();}
function c() {return b();}
function d() {return c();}
function e() {return c();}
function f() {return c();}
function g() {return d() + e() + f();}

function main() {
    i = 0;
    result = 0;
    while (i < 10000) {
        result = result + g();
        i = i + 1;
    }
    return result;
}