diff src/share/vm/c1/c1_Runtime1.cpp @ 1142:4ce7240d622c

6914300: ciEnv should export all well known classes Reviewed-by: kvn, twisti
author never
date Wed, 06 Jan 2010 14:22:39 -0800
parents 0fbdb4381b99
children 6deeaebad47a 6484c4ee11cb
line wrap: on
line diff
--- a/src/share/vm/c1/c1_Runtime1.cpp	Tue Jan 05 11:16:09 2010 -0800
+++ b/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();
   }