hotspot/src/cpu/sparc/vm/debug_sparc.cpp
changeset 13728 882756847a04
parent 7397 5b173b4ca846
child 24932 374cc5d929fb
--- a/hotspot/src/cpu/sparc/vm/debug_sparc.cpp	Fri Aug 31 16:39:35 2012 -0700
+++ b/hotspot/src/cpu/sparc/vm/debug_sparc.cpp	Sat Sep 01 13:25:18 2012 -0400
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -61,7 +61,7 @@
       CodeBlob *b = CodeCache::find_blob((address) pc);
       if (b != NULL) {
         if (b->is_nmethod()) {
-          methodOop m = ((nmethod*)b)->method();
+          Method* m = ((nmethod*)b)->method();
           int nlocals = m->max_locals();
           int nparams  = m->size_of_parameters();
           tty->print_cr("compiled java method (locals = %d, params = %d)", nlocals, nparams);