src/share/vm/ci/ciInstanceKlass.hpp

Print this page

        

*** 20,29 **** --- 20,38 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_CI_CIINSTANCEKLASS_HPP + #define SHARE_VM_CI_CIINSTANCEKLASS_HPP + + #include "ci/ciConstantPoolCache.hpp" + #include "ci/ciFlags.hpp" + #include "ci/ciInstanceKlassKlass.hpp" + #include "ci/ciKlass.hpp" + #include "ci/ciSymbol.hpp" + // ciInstanceKlass // // This class represents a klassOop in the HotSpot virtual machine // whose Klass part is an instanceKlass. It may or may not // be loaded.
*** 213,217 **** --- 222,228 ---- // What kind of ciObject is this? bool is_instance_klass() { return true; } bool is_java_klass() { return true; } }; + + #endif // SHARE_VM_CI_CIINSTANCEKLASS_HPP