# HG changeset patch # User Christian Haeubl # Date 1359996173 -3600 # Node ID e7a85c94502ec27376b1636a91bc704ac761fb5f # Parent fbbc2ea60c4dd1af0f2eaa00266802636aba10e1 adjusted test case for the new inlining diff -r fbbc2ea60c4d -r e7a85c94502e graal/com.oracle.graal.compiler.test/src/com/oracle/graal/compiler/test/ea/EscapeAnalysisTest.java --- a/graal/com.oracle.graal.compiler.test/src/com/oracle/graal/compiler/test/ea/EscapeAnalysisTest.java Mon Feb 04 17:29:13 2013 +0100 +++ b/graal/com.oracle.graal.compiler.test/src/com/oracle/graal/compiler/test/ea/EscapeAnalysisTest.java Mon Feb 04 17:42:53 2013 +0100 @@ -198,7 +198,7 @@ StructuredGraph graph = parse(snippet); try { for (Invoke n : graph.getInvokes()) { - n.node().setProbability(100000); + n.setInliningRelevance(1); } Assumptions assumptions = new Assumptions(false);