hotspot/src/share/vm/jvmci/jvmciRuntime.cpp
changeset 33611 9abd65805e19
parent 33198 b37ad9fbf681
child 33638 ef49ed90010b
--- a/hotspot/src/share/vm/jvmci/jvmciRuntime.cpp	Mon Oct 26 13:11:36 2015 -0400
+++ b/hotspot/src/share/vm/jvmci/jvmciRuntime.cpp	Wed Oct 28 09:47:23 2015 -0400
@@ -124,7 +124,7 @@
   //       (This may have to change if this code changes!)
   assert(array_klass->is_klass(), "not a class");
   oop obj;
-  if (array_klass->oop_is_typeArray()) {
+  if (array_klass->is_typeArray_klass()) {
     BasicType elt_type = TypeArrayKlass::cast(array_klass)->element_type();
     obj = oopFactory::new_typeArray(elt_type, length, CHECK);
   } else {