view graal/com.oracle.graal.truffle.test/sl/TestTruffleBoundary01.sl @ 18592:278f8fe0c212

ArrayCopyCallNode: remove unused code.
author Bernhard Urban <bernhard.urban@jku.at>
date Tue, 02 Dec 2014 15:51:02 +0100
parents 0e7455cb3004
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");
}