hotspot/src/share/vm/c1/c1_Runtime1.cpp
changeset 4571 80b553bddc26
parent 2105 347008ce7984
child 4886 a2f9a66475b3
child 4761 bdb7375a1fee
--- a/hotspot/src/share/vm/c1/c1_Runtime1.cpp	Tue Jan 05 11:16:09 2010 -0800
+++ b/hotspot/src/share/vm/c1/c1_Runtime1.cpp	Wed Jan 06 14:22:39 2010 -0800
@@ -425,7 +425,7 @@
   assert(exception.not_null(), "NULL exceptions should be handled by throw_exception");
   assert(exception->is_oop(), "just checking");
   // Check that exception is a subclass of Throwable, otherwise we have a VerifyError
-  if (!(exception->is_a(SystemDictionary::throwable_klass()))) {
+  if (!(exception->is_a(SystemDictionary::Throwable_klass()))) {
     if (ExitVMOnVerifyError) vm_exit(-1);
     ShouldNotReachHere();
   }