mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 14:24:46 +02:00
8041623: Solaris Studio 12.4 C++ 5.13, CHECK_UNHANDLED_OOPS use of class oop's copy constructor definitions causing error level diagnostic
Fix several minor compilation issues with volatile oops for CHECK_UNHANDLED_OOPS support. Reviewed-by: coleenp, hseigel
This commit is contained in:
parent
436e1ecdf2
commit
5ff7186a1c
5 changed files with 9 additions and 13 deletions
|
@ -1434,7 +1434,7 @@ void JavaThread::initialize() {
|
|||
_in_deopt_handler = 0;
|
||||
_doing_unsafe_access = false;
|
||||
_stack_guard_state = stack_guard_unused;
|
||||
(void)const_cast<oop&>(_exception_oop = NULL);
|
||||
(void)const_cast<oop&>(_exception_oop = oop(NULL));
|
||||
_exception_pc = 0;
|
||||
_exception_handler_pc = 0;
|
||||
_is_method_handle_return = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue