src/hotspot/share/oops/method.inline.hpp
changeset 59290 97d13893ec3c
parent 59247 56bf71d64d51
equal deleted inserted replaced
59289:c887851da33d 59290:97d13893ec3c
    24 
    24 
    25 #ifndef SHARE_OOPS_METHOD_INLINE_HPP
    25 #ifndef SHARE_OOPS_METHOD_INLINE_HPP
    26 #define SHARE_OOPS_METHOD_INLINE_HPP
    26 #define SHARE_OOPS_METHOD_INLINE_HPP
    27 
    27 
    28 #include "oops/method.hpp"
    28 #include "oops/method.hpp"
    29 #include "runtime/orderAccess.hpp"
    29 #include "runtime/atomic.hpp"
    30 
    30 
    31 inline address Method::from_compiled_entry() const {
    31 inline address Method::from_compiled_entry() const {
    32   return Atomic::load_acquire(&_from_compiled_entry);
    32   return Atomic::load_acquire(&_from_compiled_entry);
    33 }
    33 }
    34 
    34