# HG changeset patch # User Thomas Wuerthinger # Date 1331207149 -3600 # Node ID b4f548d49f965b2776bea3e9075944d64607dfa3 # Parent 4d152e5e34ba8ac8c9cb54487599bb8af290a86f Remove duplicate method entry in debug scope. diff -r 4d152e5e34ba -r b4f548d49f96 graal/com.oracle.max.graal.hotspot/src/com/oracle/max/graal/hotspot/bridge/VMToCompilerImpl.java --- a/graal/com.oracle.max.graal.hotspot/src/com/oracle/max/graal/hotspot/bridge/VMToCompilerImpl.java Mon Mar 05 18:22:31 2012 -0800 +++ b/graal/com.oracle.max.graal.hotspot/src/com/oracle/max/graal/hotspot/bridge/VMToCompilerImpl.java Thu Mar 08 12:45:49 2012 +0100 @@ -312,7 +312,7 @@ TTY.Filter filter = new TTY.Filter(GraalOptions.PrintFilter, method); long nanoTime; try { - result = Debug.scope("Compiling", method, new Callable() { + result = Debug.scope("Compiling", new Callable() { @Override public CiTargetMethod call() throws Exception { return compiler.getCompiler().compileMethod(method, -1, plan);