8165014: Unaligned unsafe access should throw InternalError on Solaris

Reviewed-by: dholmes, coleenp
This commit is contained in:
Martin Doerr 2016-08-31 19:41:57 -04:00
parent 31becdb0d2
commit ddfcdd9299

View File

@ -444,7 +444,7 @@ JVM_handle_solaris_signal(int sig, siginfo_t* info, void* ucVoid,
if (thread->thread_state() == _thread_in_vm) {
if (sig == SIGBUS && info->si_code == BUS_OBJERR && thread->doing_unsafe_access()) {
if (sig == SIGBUS && thread->doing_unsafe_access()) {
stub = SharedRuntime::handle_unsafe_access(thread, npc);
}
}