X86: Fix register ordering.
The correct order is unintuitively rax, rcx, rdx, rbx, etc, not rax, rbx, rcx, rdx. --HG-- extra : convert_revision : 3abe6a723a6e30becfe34f8da707ea2ff5d4df77
This commit is contained in:
@@ -107,9 +107,9 @@ Trace::NativeTraceRecord::dump()
|
||||
if(!staticInst->isMicroop() || staticInst->isLastMicroop())
|
||||
{
|
||||
checkIntReg("rax", INTREG_RAX, sizeof(uint64_t));
|
||||
checkIntReg("rbx", INTREG_RBX, sizeof(uint64_t));
|
||||
checkIntReg("rcx", INTREG_RCX, sizeof(uint64_t));
|
||||
checkIntReg("rdx", INTREG_RDX, sizeof(uint64_t));
|
||||
checkIntReg("rbx", INTREG_RBX, sizeof(uint64_t));
|
||||
checkIntReg("rsp", INTREG_RSP, sizeof(uint64_t));
|
||||
checkIntReg("rbp", INTREG_RBP, sizeof(uint64_t));
|
||||
checkIntReg("rsi", INTREG_RSI, sizeof(uint64_t));
|
||||
|
||||
Reference in New Issue
Block a user