hotspot/src/share/vm/interpreter/interpreterRuntime.cpp
changeset 13952 e3cf184080bc
parent 13740 ae6179641137
child 13961 aeaa21c167d1
--- a/hotspot/src/share/vm/interpreter/interpreterRuntime.cpp	Fri Sep 28 14:36:20 2012 -0700
+++ b/hotspot/src/share/vm/interpreter/interpreterRuntime.cpp	Sat Sep 29 06:40:00 2012 -0400
@@ -211,7 +211,7 @@
     int n = Interpreter::local_offset_in_bytes(index)/jintSize;
     dims[index] = first_size_address[n];
   }
-  oop obj = arrayKlass::cast(klass)->multi_allocate(nof_dims, dims, CHECK);
+  oop obj = ArrayKlass::cast(klass)->multi_allocate(nof_dims, dims, CHECK);
   thread->set_vm_result(obj);
 IRT_END