hotspot/src/share/vm/code/nmethod.hpp
changeset 8495 a4959965eaa3
parent 8110 c992c8d52344
child 8661 3dc8a18ac563
child 8658 a173231e8022
--- a/hotspot/src/share/vm/code/nmethod.hpp	Sat Feb 26 12:10:54 2011 -0800
+++ b/hotspot/src/share/vm/code/nmethod.hpp	Mon Feb 28 06:07:12 2011 -0800
@@ -34,7 +34,6 @@
 class ExceptionCache : public CHeapObj {
   friend class VMStructs;
  private:
-  static address _unwind_handler;
   enum { cache_size = 16 };
   klassOop _exception_type;
   address  _pc[cache_size];
@@ -62,8 +61,6 @@
   bool    match_exception_with_space(Handle exception) ;
   address test_address(address addr);
   bool    add_address_and_handler(address addr, address handler) ;
-
-  static address unwind_handler() { return _unwind_handler; }
 };