changeset 5054:b4f548d49f96

Remove duplicate method entry in debug scope.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 08 Mar 2012 12:45:49 +0100
parents 4d152e5e34ba
children 90c150a0a22b
files graal/com.oracle.max.graal.hotspot/src/com/oracle/max/graal/hotspot/bridge/VMToCompilerImpl.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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<CiTargetMethod>() {
+                            result = Debug.scope("Compiling", new Callable<CiTargetMethod>() {
                                 @Override
                                 public CiTargetMethod call() throws Exception {
                                     return compiler.getCompiler().compileMethod(method, -1, plan);