Fix typo in last change

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

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2528 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
whesse@chromium.org 2009-07-23 13:05:36 +00:00
parent 18c6337a2c
commit 1309d6df08

View File

@ -291,7 +291,7 @@ void KeyedLoadIC::GenerateGeneric(MacroAssembler* masm) {
// If the string is a symbol, do a quick inline probe of the receiver's // If the string is a symbol, do a quick inline probe of the receiver's
// dictionary, if it exists. // dictionary, if it exists.
__ movzx_b(ebx, FieldOperand(exd, Map::kInstanceTypeOffset)); __ movzx_b(ebx, FieldOperand(edx, Map::kInstanceTypeOffset));
__ test(ebx, Immediate(kIsSymbolMask)); __ test(ebx, Immediate(kIsSymbolMask));
__ j(zero, &slow, not_taken); __ j(zero, &slow, not_taken);
// Probe the dictionary leaving result in ecx. // Probe the dictionary leaving result in ecx.