comparison src/share/vm/ci/ciInstanceKlass.cpp @ 1142:4ce7240d622c

6914300: ciEnv should export all well known classes Reviewed-by: kvn, twisti
author never
date Wed, 06 Jan 2010 14:22:39 -0800
parents dd57230ba8fe
children 3483ec571caf c18cbe5936b8
comparison
equal deleted inserted replaced
1140:1f6d42899c3a 1142:4ce7240d622c
73 // Lazy fields get filled in only upon request. 73 // Lazy fields get filled in only upon request.
74 _super = NULL; 74 _super = NULL;
75 _java_mirror = NULL; 75 _java_mirror = NULL;
76 76
77 if (is_shared()) { 77 if (is_shared()) {
78 if (h_k() != SystemDictionary::object_klass()) { 78 if (h_k() != SystemDictionary::Object_klass()) {
79 super(); 79 super();
80 } 80 }
81 java_mirror(); 81 java_mirror();
82 //compute_nonstatic_fields(); // done outside of constructor 82 //compute_nonstatic_fields(); // done outside of constructor
83 } 83 }