X64: Fix allocated register name table.

BUG=
TEST=

Review URL: http://codereview.chromium.org/6247006

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@6325 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
lrn@chromium.org 2011-01-14 14:03:05 +00:00
parent 9f5c1bfba1
commit 2b4767b584

View File

@ -112,15 +112,15 @@ struct Register {
ASSERT(index >= 0 && index < kNumAllocatableRegisters); ASSERT(index >= 0 && index < kNumAllocatableRegisters);
const char* const names[] = { const char* const names[] = {
"rax", "rax",
"rcx",
"rdx",
"rbx", "rbx",
"rdx",
"rcx",
"rdi", "rdi",
"r8", "r8",
"r9", "r9",
"r11", "r11",
"r12", "r14",
"r14" "r12"
}; };
return names[index]; return names[index];
} }