提交 d223357e 编写于 作者: R roland

8067231: Zero builds fails after JDK-6898462

Summary: Interpreter::remove_activation_entry() is not defined for the C++ interpreter
Reviewed-by: roland, coleenp
Contributed-by: NSeverin Gehwolf <sgehwolf@redhat.com>
上级 60113f22
...@@ -407,7 +407,11 @@ IRT_ENTRY(address, InterpreterRuntime::exception_handler_for_exception(JavaThrea ...@@ -407,7 +407,11 @@ IRT_ENTRY(address, InterpreterRuntime::exception_handler_for_exception(JavaThrea
// during deoptimization so the interpreter needs to skip it when // during deoptimization so the interpreter needs to skip it when
// the frame is popped. // the frame is popped.
thread->set_do_not_unlock_if_synchronized(true); thread->set_do_not_unlock_if_synchronized(true);
#ifdef CC_INTERP
return (address) -1;
#else
return Interpreter::remove_activation_entry(); return Interpreter::remove_activation_entry();
#endif
} }
// Need to do this check first since when _do_not_unlock_if_synchronized // Need to do this check first since when _do_not_unlock_if_synchronized
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册