| Index: runtime/vm/assembler_ia32_test.cc
|
| diff --git a/runtime/vm/assembler_ia32_test.cc b/runtime/vm/assembler_ia32_test.cc
|
| index 0f23a171fea180b9001c7b16baeacc6ebdd22ed4..29e8ebfcda101c11e5ade7de1ec400b6a57be088 100644
|
| --- a/runtime/vm/assembler_ia32_test.cc
|
| +++ b/runtime/vm/assembler_ia32_test.cc
|
| @@ -845,7 +845,19 @@ ASSEMBLER_TEST_GENERATE(DoubleFPMoves, assembler) {
|
| __ movsd(XMM7, XMM6);
|
| __ movl(Address(ESP, 0), Immediate(0));
|
| __ movl(Address(ESP, kWordSize), Immediate(0));
|
| + __ movsd(XMM0, Address(ESP, 0));
|
| __ movsd(Address(ESP, 0), XMM7);
|
| + __ movsd(XMM7, Address(ESP, 0));
|
| + __ movaps(XMM6, XMM7);
|
| + __ movaps(XMM5, XMM6);
|
| + __ movaps(XMM4, XMM5);
|
| + __ movaps(XMM3, XMM4);
|
| + __ movaps(XMM2, XMM3);
|
| + __ movaps(XMM1, XMM2);
|
| + __ movaps(XMM0, XMM1);
|
| + __ movl(Address(ESP, 0), Immediate(0));
|
| + __ movl(Address(ESP, kWordSize), Immediate(0));
|
| + __ movsd(Address(ESP, 0), XMM0);
|
| __ fldl(Address(ESP, 0));
|
| __ popl(EAX);
|
| __ popl(EAX);
|
|
|