# HG changeset patch # User never # Date 1238537385 25200 # Node ID 69aefafe69c1b5af8c30a6c40a59d504c7e5a6fe # Parent d3676b4cb78c62057456bc65bf4dc445d1c5825d 6824463: deopt blob is testing wrong register on 64-bit x86 Reviewed-by: jrose, phh, kvn diff -r d3676b4cb78c -r 69aefafe69c1 src/cpu/x86/vm/sharedRuntime_x86_64.cpp --- a/src/cpu/x86/vm/sharedRuntime_x86_64.cpp Tue Mar 31 10:02:01 2009 -0700 +++ b/src/cpu/x86/vm/sharedRuntime_x86_64.cpp Tue Mar 31 15:09:45 2009 -0700 @@ -2691,7 +2691,7 @@ __ mov(rdi, rax); Label noException; - __ cmpl(r12, Deoptimization::Unpack_exception); // Was exception pending? + __ cmpl(r14, Deoptimization::Unpack_exception); // Was exception pending? __ jcc(Assembler::notEqual, noException); __ movptr(rax, Address(r15_thread, JavaThread::exception_oop_offset())); // QQQ this is useless it was NULL above