| Index: src/x64/disasm-x64.cc
|
| ===================================================================
|
| --- src/x64/disasm-x64.cc (revision 8618)
|
| +++ src/x64/disasm-x64.cc (working copy)
|
| @@ -1062,11 +1062,12 @@
|
| AppendToBuffer("movq ");
|
| current += PrintRightXMMOperand(current);
|
| AppendToBuffer(", %s", NameOfXMMRegister(regop));
|
| + } else if (opcode == 0x50) {
|
| + AppendToBuffer("movmskpd %s,", NameOfCPURegister(regop));
|
| + current += PrintRightXMMOperand(current);
|
| } else {
|
| const char* mnemonic = "?";
|
| - if (opcode == 0x50) {
|
| - mnemonic = "movmskpd";
|
| - } else if (opcode == 0x54) {
|
| + if (opcode == 0x54) {
|
| mnemonic = "andpd";
|
| } else if (opcode == 0x56) {
|
| mnemonic = "orpd";
|
|
|