mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-23 04:24:49 +02:00
6746320: Hotspot regression test for 6512111 fails in -Xmixed mode
Reviewed-by: kvn
This commit is contained in:
parent
8174b8b497
commit
ae1dc3db15
1 changed files with 2 additions and 2 deletions
|
@ -1129,8 +1129,8 @@ void LIR_Assembler::stack2stack(LIR_Opr src, LIR_Opr dest, BasicType type) {
|
|||
#else
|
||||
__ pushl(frame_map()->address_for_slot(src ->double_stack_ix(), 0));
|
||||
// push and pop the part at src + wordSize, adding wordSize for the previous push
|
||||
__ pushl(frame_map()->address_for_slot(src ->double_stack_ix(), wordSize));
|
||||
__ popl (frame_map()->address_for_slot(dest->double_stack_ix(), wordSize));
|
||||
__ pushl(frame_map()->address_for_slot(src ->double_stack_ix(), 2 * wordSize));
|
||||
__ popl (frame_map()->address_for_slot(dest->double_stack_ix(), 2 * wordSize));
|
||||
__ popl (frame_map()->address_for_slot(dest->double_stack_ix(), 0));
|
||||
#endif // _LP64
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue