hotspot/src/share/vm/classfile/classLoader.hpp
changeset 17004 4d2371d76a19
parent 13963 e5b53c306fb5
child 19685 3df9b00b5d5f
--- a/hotspot/src/share/vm/classfile/classLoader.hpp	Thu Apr 11 21:54:46 2013 -0700
+++ b/hotspot/src/share/vm/classfile/classLoader.hpp	Fri Apr 12 12:22:59 2013 -0700
@@ -340,11 +340,12 @@
   // Force compilation of all methods in all classes in bootstrap class path (stress test)
 #ifndef PRODUCT
  private:
-  static int _compile_the_world_counter;
+  static int _compile_the_world_class_counter;
+  static int _compile_the_world_method_counter;
  public:
   static void compile_the_world();
   static void compile_the_world_in(char* name, Handle loader, TRAPS);
-  static int  compile_the_world_counter() { return _compile_the_world_counter; }
+  static int  compile_the_world_counter() { return _compile_the_world_class_counter; }
 #endif //PRODUCT
 };