hotspot/src/share/vm/c1/c1_Runtime1.cpp
changeset 4571 80b553bddc26
parent 2105 347008ce7984
child 4886 a2f9a66475b3
child 4761 bdb7375a1fee
equal deleted inserted replaced
4569:f372ea9e5ed4 4571:80b553bddc26
   423   }
   423   }
   424 #ifdef ASSERT
   424 #ifdef ASSERT
   425   assert(exception.not_null(), "NULL exceptions should be handled by throw_exception");
   425   assert(exception.not_null(), "NULL exceptions should be handled by throw_exception");
   426   assert(exception->is_oop(), "just checking");
   426   assert(exception->is_oop(), "just checking");
   427   // Check that exception is a subclass of Throwable, otherwise we have a VerifyError
   427   // Check that exception is a subclass of Throwable, otherwise we have a VerifyError
   428   if (!(exception->is_a(SystemDictionary::throwable_klass()))) {
   428   if (!(exception->is_a(SystemDictionary::Throwable_klass()))) {
   429     if (ExitVMOnVerifyError) vm_exit(-1);
   429     if (ExitVMOnVerifyError) vm_exit(-1);
   430     ShouldNotReachHere();
   430     ShouldNotReachHere();
   431   }
   431   }
   432 #endif
   432 #endif
   433 
   433