8039146: Fix 64-bit store to int JNIHandleBlock::_top

Reviewed-by: coleenp, kvn
This commit is contained in:
Goetz Lindenmaier 2014-04-03 12:37:53 +02:00
parent aae7e42b0b
commit d7b640b3ce
8 changed files with 8 additions and 8 deletions

View file

@ -2266,7 +2266,7 @@ nmethod* SharedRuntime::generate_native_wrapper(MacroAssembler* masm,
if (!is_critical_native) {
// reset handle block
__ movptr(rcx, Address(thread, JavaThread::active_handles_offset()));
__ movptr(Address(rcx, JNIHandleBlock::top_offset_in_bytes()), NULL_WORD);
__ movl(Address(rcx, JNIHandleBlock::top_offset_in_bytes()), NULL_WORD);
// Any exception pending?
__ cmpptr(Address(thread, in_bytes(Thread::pending_exception_offset())), (int32_t)NULL_WORD);