Reviewers: Mads Ager, Message: [email protected]
Description: Fix typo in last change Please review this at http://codereview.chromium.org/160009 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/ia32/ic-ia32.cc Index: src/ia32/ic-ia32.cc =================================================================== --- src/ia32/ic-ia32.cc (revision 2527) +++ src/ia32/ic-ia32.cc (working copy) @@ -291,7 +291,7 @@ // If the string is a symbol, do a quick inline probe of the receiver's // dictionary, if it exists. - __ movzx_b(ebx, FieldOperand(exd, Map::kInstanceTypeOffset)); + __ movzx_b(ebx, FieldOperand(edx, Map::kInstanceTypeOffset)); __ test(ebx, Immediate(kIsSymbolMask)); __ j(zero, &slow, not_taken); // Probe the dictionary leaving result in ecx. --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
