| Index: test/cctest/test-disasm-ia32.cc
|
| diff --git a/test/cctest/test-disasm-ia32.cc b/test/cctest/test-disasm-ia32.cc
|
| index 5bd11bcf53a603523c769b29c3cc908edbcf559e..88471a26c85b09c24b0e58944b8c5458449ca1f2 100644
|
| --- a/test/cctest/test-disasm-ia32.cc
|
| +++ b/test/cctest/test-disasm-ia32.cc
|
| @@ -390,6 +390,9 @@ TEST(DisasmIa320) {
|
| {
|
| // Move operation
|
| __ movaps(xmm0, xmm1);
|
| + __ movups(xmm0, xmm1);
|
| + __ movups(xmm0, Operand(edx, 4));
|
| + __ movups(Operand(edx, 4), xmm0);
|
| __ shufps(xmm0, xmm0, 0x0);
|
| __ cvtsd2ss(xmm0, xmm1);
|
| __ cvtsd2ss(xmm0, Operand(ebx, ecx, times_4, 10000));
|
|
|