comparison 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
comparison
equal deleted inserted replaced
1129:a5a6adfca6ec 1144:9b9c1ee9b3f6
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