MIPS: Fix 'Load API accessor from descriptor instead of embedding it in handler.'

Fix a typo in 6ea31f7eee

BUG=

Review URL: https://codereview.chromium.org/878023003

Cr-Commit-Position: refs/heads/master@{#26335}
This commit is contained in:
balazs.kilvady 2015-01-29 10:33:47 -08:00 committed by Commit bot
parent 24bfa90b31
commit c12d79257e
2 changed files with 2 additions and 2 deletions

View File

@ -254,7 +254,7 @@ void PropertyHandlerCompiler::GenerateApiAccessorCall(
Register api_function_address = a1;
// Put callee in place.
__ LoadAccessor(callee, holder, accessor_index,
__ LoadAccessor(callee, accessor_holder, accessor_index,
is_store ? ACCESSOR_SETTER : ACCESSOR_GETTER);
// Put holder in place.

View File

@ -255,7 +255,7 @@ void PropertyHandlerCompiler::GenerateApiAccessorCall(
Register api_function_address = a1;
// Put callee in place.
__ LoadAccessor(callee, holder, accessor_index,
__ LoadAccessor(callee, accessor_holder, accessor_index,
is_store ? ACCESSOR_SETTER : ACCESSOR_GETTER);
// Put holder in place.