view graal/com.oracle.graal.truffle.test/src/sl/TestTruffleBoundary01.sl @ 23296:2bd7d1d8acd4 graal-0.12

updated CHANGELOG.md for 0.12 release
author Doug Simon <doug.simon@oracle.com>
date Tue, 12 Jan 2016 15:33:25 +0100
parents bba4e91a2d63
children
line wrap: on
line source

/* 
 * This test verifies that CallTargets cannot exceed the TruffleInliningMaxCallerSize limit when inlining.
 */

function test1() {
    testTruffleBoundary01();
}
function main() {
    callUntilOptimized(test1);
    assertTrue(isOptimized(test1), "inlinableFunction must be compiled properly");
}