hotspot/src/share/vm/oops/klass.hpp
changeset 46413 b0f67ec8f6be
parent 46408 70aab0c2ea8b
child 46415 7d5a286cdf89
--- a/hotspot/src/share/vm/oops/klass.hpp	Tue Apr 25 18:56:45 2017 +0000
+++ b/hotspot/src/share/vm/oops/klass.hpp	Fri Apr 14 08:33:57 2017 -0700
@@ -563,6 +563,8 @@
   void set_has_vanilla_constructor()    { _access_flags.set_has_vanilla_constructor(); }
   bool has_miranda_methods () const     { return access_flags().has_miranda_methods(); }
   void set_has_miranda_methods()        { _access_flags.set_has_miranda_methods(); }
+  bool is_shared() const                { return access_flags().is_shared_class(); } // shadows MetaspaceObj::is_shared)()
+  void set_is_shared()                  { _access_flags.set_is_shared_class(); }
 
   bool is_cloneable() const;
   void set_is_cloneable();