Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1514)

Unified Diff: runtime/vm/disassembler_ia32.cc

Issue 22947006: Add signMask getter to Float32x4 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/vm/disassembler_ia32.cc
diff --git a/runtime/vm/disassembler_ia32.cc b/runtime/vm/disassembler_ia32.cc
index 5f1131e3b046a4264752acee3920ca6f829c6be7..0b0f902fc114716aa5e2a1b73856e6e4fe1c1718 100644
--- a/runtime/vm/disassembler_ia32.cc
+++ b/runtime/vm/disassembler_ia32.cc
@@ -1392,7 +1392,7 @@ int X86Decoder::InstructionDecode(uword pc) {
Print(",");
data += PrintRightXmmOperand(data);
} else if (f0byte == 0x50) {
- Print("movmskpd ");
+ Print("movmskps ");
int mod, regop, rm;
GetModRm(*data, &mod, &regop, &rm);
PrintCPURegister(regop);

Powered by Google App Engine
This is Rietveld 408576698