| Index: test/cctest/test-disasm-x64.cc
|
| diff --git a/test/cctest/test-disasm-x64.cc b/test/cctest/test-disasm-x64.cc
|
| index 004229dd49969f25203bf8cd195ae59b24197262..4ae36089394e503fbd7f378f3ecdb36e7f8290cf 100644
|
| --- a/test/cctest/test-disasm-x64.cc
|
| +++ b/test/cctest/test-disasm-x64.cc
|
| @@ -417,9 +417,13 @@ TEST(DisasmX64) {
|
| __ movdqa(Operand(rbx, rcx, times_4, 10000), xmm0);
|
|
|
| __ addsd(xmm1, xmm0);
|
| + __ addsd(xmm1, Operand(rbx, rcx, times_4, 10000));
|
| __ mulsd(xmm1, xmm0);
|
| + __ mulsd(xmm1, Operand(rbx, rcx, times_4, 10000));
|
| __ subsd(xmm1, xmm0);
|
| + __ subsd(xmm1, Operand(rbx, rcx, times_4, 10000));
|
| __ divsd(xmm1, xmm0);
|
| + __ divsd(xmm1, Operand(rbx, rcx, times_4, 10000));
|
| __ ucomisd(xmm0, xmm1);
|
|
|
| __ andpd(xmm0, xmm1);
|
|
|