view graal/com.oracle.truffle.sl.test/tests/Inlining.sl @ 17037:ff0ec169843b

Fixed loop phis with itself as single back value did not canonicalize. (contributed by Lukas Stadler)
author Christian Humer <christian.humer@gmail.com>
date Wed, 03 Sep 2014 14:58:53 +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;
}