# HG changeset patch # User Tom Rodriguez # Date 1431984762 25200 # Node ID 80a78b8122fe518aa28855da3f950ea598c8a3ec # Parent 90fc2256ed37ce0e93117204f5e15335072a8459 fixed scope name diff -r 90fc2256ed37 -r 80a78b8122fe graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/replacements/ObjectCloneNode.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/replacements/ObjectCloneNode.java Mon May 18 14:32:14 2015 -0700 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/replacements/ObjectCloneNode.java Mon May 18 14:32:42 2015 -0700 @@ -56,7 +56,7 @@ final ResolvedJavaMethod snippetMethod = tool.getMetaAccess().lookupJavaMethod(method); final Replacements replacements = tool.getReplacements(); StructuredGraph snippetGraph = null; - try (Scope s = Debug.scope("ArrayCopySnippet", snippetMethod)) { + try (Scope s = Debug.scope("ArrayCloneSnippet", snippetMethod)) { snippetGraph = replacements.getSnippet(snippetMethod, null); } catch (Throwable e) { throw Debug.handle(e);