hotspot/src/share/vm/code/compiledIC.cpp
changeset 14391 df0a1573d5bd
parent 13728 882756847a04
child 16377 3318d3edbf87
--- a/hotspot/src/share/vm/code/compiledIC.cpp	Thu Oct 04 14:55:57 2012 +0200
+++ b/hotspot/src/share/vm/code/compiledIC.cpp	Tue Nov 06 15:09:37 2012 -0500
@@ -191,8 +191,8 @@
     int index = klassItable::compute_itable_index(call_info->resolved_method()());
     entry = VtableStubs::create_stub(false, index, method());
     assert(entry != NULL, "entry not computed");
-    Klass* k = call_info->resolved_method()->method_holder();
-    assert(Klass::cast(k)->is_interface(), "sanity check");
+    InstanceKlass* k = call_info->resolved_method()->method_holder();
+    assert(k->is_interface(), "sanity check");
     InlineCacheBuffer::create_transition_stub(this, k, entry);
   } else {
     // Can be different than method->vtable_index(), due to package-private etc.