hotspot/src/share/vm/interpreter/bytecodeInterpreter.cpp
changeset 13952 e3cf184080bc
parent 13728 882756847a04
child 14294 130e947dfbe6
--- a/hotspot/src/share/vm/interpreter/bytecodeInterpreter.cpp	Fri Sep 28 14:36:20 2012 -0700
+++ b/hotspot/src/share/vm/interpreter/bytecodeInterpreter.cpp	Sat Sep 29 06:40:00 2012 -0400
@@ -1626,7 +1626,7 @@
           if (rhsObject != NULL) {
             /* Check assignability of rhsObject into arrObj */
             Klass* rhsKlassOop = rhsObject->klass(); // EBX (subclass)
-            Klass* elemKlassOop = objArrayKlass::cast(arrObj->klass())->element_klass(); // superklass EAX
+            Klass* elemKlassOop = ObjArrayKlass::cast(arrObj->klass())->element_klass(); // superklass EAX
             //
             // Check for compatibilty. This check must not GC!!
             // Seems way more expensive now that we must dispatch