# HG changeset patch # User Christian Humer # Date 1409312884 -7200 # Node ID f8565347bb3b1deb49167613bf5f752bcd66b888 # Parent e4cfc9ea2bd343c86a92f68ec4058f8114f0cc47 Truffle: Revert: fix compilation issue; after a method is compiled (but not yet installed), it still needs to call the already compiled children. diff -r e4cfc9ea2bd3 -r f8565347bb3b graal/com.oracle.graal.truffle/src/com/oracle/graal/truffle/OptimizedCallTarget.java --- a/graal/com.oracle.graal.truffle/src/com/oracle/graal/truffle/OptimizedCallTarget.java Thu Aug 28 17:49:37 2014 -0700 +++ b/graal/com.oracle.graal.truffle/src/com/oracle/graal/truffle/OptimizedCallTarget.java Fri Aug 29 13:48:04 2014 +0200 @@ -333,9 +333,6 @@ public final Object callInlined(Object[] arguments) { if (CompilerDirectives.inInterpreter()) { compilationProfile.reportInlinedCall(); - if (isValid()) { - return callDirect(arguments); - } } VirtualFrame frame = createFrame(getRootNode().getFrameDescriptor(), arguments); return callProxy(frame);