src/hotspot/share/ci/ciObjectFactory.cpp
changeset 58722 cba8afa5cfed
parent 58273 08a5148e7c4e
equal deleted inserted replaced
58720:ae0af9fb3dbb 58722:cba8afa5cfed
   484   // the cache.
   484   // the cache.
   485   ciKlass* new_klass = NULL;
   485   ciKlass* new_klass = NULL;
   486 
   486 
   487   // Two cases: this is an unloaded ObjArrayKlass or an
   487   // Two cases: this is an unloaded ObjArrayKlass or an
   488   // unloaded InstanceKlass.  Deal with both.
   488   // unloaded InstanceKlass.  Deal with both.
   489   if (name->char_at(0) == '[') {
   489   if (name->char_at(0) == JVM_SIGNATURE_ARRAY) {
   490     // Decompose the name.'
   490     // Decompose the name.'
   491     FieldArrayInfo fd;
   491     FieldArrayInfo fd;
   492     BasicType element_type = FieldType::get_array_info(name->get_symbol(),
   492     BasicType element_type = FieldType::get_array_info(name->get_symbol(),
   493                                                        fd, THREAD);
   493                                                        fd, THREAD);
   494     if (HAS_PENDING_EXCEPTION) {
   494     if (HAS_PENDING_EXCEPTION) {