| Index: src/ic/mips/handler-compiler-mips.cc
|
| diff --git a/src/ic/mips/handler-compiler-mips.cc b/src/ic/mips/handler-compiler-mips.cc
|
| index bc22ca278325f1734e97dafb7acf96b82ea5a132..d3eecf75841e0c2d854f04bc3d351d7325d1e0a5 100644
|
| --- a/src/ic/mips/handler-compiler-mips.cc
|
| +++ b/src/ic/mips/handler-compiler-mips.cc
|
| @@ -528,7 +528,7 @@ void NamedLoadHandlerCompiler::FrontendFooter(Handle<Name> name, Label* miss) {
|
| DCHECK(kind() == Code::LOAD_IC);
|
| PopVectorAndSlot();
|
| }
|
| - TailCallBuiltin(masm(), MissBuiltin(kind()));
|
| + TailCallMissHandler(masm(), kind());
|
| __ bind(&success);
|
| }
|
| }
|
| @@ -540,7 +540,7 @@ void NamedStoreHandlerCompiler::FrontendFooter(Handle<Name> name, Label* miss) {
|
| __ Branch(&success);
|
| GenerateRestoreName(miss, name);
|
| if (IC::ICUseVector(kind())) PopVectorAndSlot();
|
| - TailCallBuiltin(masm(), MissBuiltin(kind()));
|
| + TailCallMissHandler(masm(), kind());
|
| __ bind(&success);
|
| }
|
| }
|
|
|