src/share/vm/code/nmethod.hpp

changeset 3099
c124e2e7463e
parent 2909
2aa9ddbb9e60
child 3500
0382d2b469b2
     1.1 --- a/src/share/vm/code/nmethod.hpp	Wed Aug 31 09:48:21 2011 -0700
     1.2 +++ b/src/share/vm/code/nmethod.hpp	Wed Aug 31 16:46:11 2011 -0700
     1.3 @@ -191,8 +191,6 @@
     1.4  
     1.5    jbyte _scavenge_root_state;
     1.6  
     1.7 -  NOT_PRODUCT(bool _has_debug_info; )
     1.8 -
     1.9    // Nmethod Flushing lock. If non-zero, then the nmethod is not removed
    1.10    // and is not made into a zombie. However, once the nmethod is made into
    1.11    // a zombie, it will be locked one final time if CompiledMethodUnload
    1.12 @@ -329,11 +327,6 @@
    1.13    methodOop method() const                        { return _method; }
    1.14    AbstractCompiler* compiler() const              { return _compiler; }
    1.15  
    1.16 -#ifndef PRODUCT
    1.17 -  bool has_debug_info() const                     { return _has_debug_info; }
    1.18 -  void set_has_debug_info(bool f)                 { _has_debug_info = false; }
    1.19 -#endif // NOT PRODUCT
    1.20 -
    1.21    // type info
    1.22    bool is_nmethod() const                         { return true; }
    1.23    bool is_java_method() const                     { return !method()->is_native(); }

mercurial