< prev index next >

src/hotspot/share/ci/ciValueKlass.hpp

Print this page

@@ -45,10 +45,13 @@
 protected:
   ciValueKlass(Klass* h_k) : ciInstanceKlass(h_k), _declared_nonstatic_fields(NULL) {
     assert(is_final(), "ValueKlass must be final");
   };
 
+  ciValueKlass(ciSymbol* name, jobject loader, jobject protection_domain) : 
+    ciInstanceKlass(name, loader, protection_domain) {}
+
   int compute_nonstatic_fields();
   const char* type_string() { return "ciValueKlass"; }
 
 public:
   bool is_valuetype() const { return true; }
< prev index next >