diff src/share/vm/c1/c1_Runtime1.cpp @ 1144:9b9c1ee9b3f6

Merge
author iveresov
date Wed, 06 Jan 2010 22:21:39 -0800
parents 4ce7240d622c
children 6deeaebad47a 6484c4ee11cb
line wrap: on
line diff
--- a/src/share/vm/c1/c1_Runtime1.cpp	Wed Dec 23 03:12:16 2009 -0800
+++ b/src/share/vm/c1/c1_Runtime1.cpp	Wed Jan 06 22:21: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();
   }