# HG changeset patch # User Christian Haeubl # Date 1328572379 28800 # Node ID dad967b94d757a7eb5723f69d41c3e47fb7cc7ea # Parent 63cd21fda79b529e5c0eff2c44b3fd43b045925c bugfix diff -r 63cd21fda79b -r dad967b94d75 graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/util/InliningUtil.java --- a/graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/util/InliningUtil.java Mon Feb 06 15:28:35 2012 -0800 +++ b/graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/util/InliningUtil.java Mon Feb 06 15:52:59 2012 -0800 @@ -607,6 +607,7 @@ } if (!invoke.useForInlining()) { Debug.log("not inlining %s because invoke is marked to be not used for inlining", methodName(invoke.callTarget().targetMethod(), invoke)); + return false; } return true; }