Fix polymorphic INTERCEPTOR StoreICs on ARM/MIPS

BUG=chromium:284998
R=verwaest@chromium.org

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

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@16566 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
jkummerow@chromium.org 2013-09-06 11:04:20 +00:00
parent 15f6fdeb3e
commit 917356285a
2 changed files with 2 additions and 2 deletions

View File

@ -2872,7 +2872,7 @@ Handle<Code> StoreStubCompiler::CompileStoreInterceptor(
TailCallBuiltin(masm(), MissBuiltin(kind()));
// Return the generated code.
return GetICCode(kind(), Code::INTERCEPTOR, name);
return GetCode(kind(), Code::INTERCEPTOR, name);
}

View File

@ -2894,7 +2894,7 @@ Handle<Code> StoreStubCompiler::CompileStoreInterceptor(
TailCallBuiltin(masm(), MissBuiltin(kind()));
// Return the generated code.
return GetICCode(kind(), Code::INTERCEPTOR, name);
return GetCode(kind(), Code::INTERCEPTOR, name);
}