| Index: src/mips/stub-cache-mips.cc
|
| diff --git a/src/mips/stub-cache-mips.cc b/src/mips/stub-cache-mips.cc
|
| index f859d6bd23e725eaff678f2c26a9638e4175835d..abccc9496b874b8449cb768bf5a29d08c6d27dfa 100644
|
| --- a/src/mips/stub-cache-mips.cc
|
| +++ b/src/mips/stub-cache-mips.cc
|
| @@ -1158,17 +1158,6 @@ void LoadStubCompiler::GenerateLoadInterceptor(
|
| }
|
|
|
|
|
| -void StubCompiler::GenerateBooleanCheck(Register object, Label* miss) {
|
| - Label success;
|
| - // Check that the object is a boolean.
|
| - __ LoadRoot(at, Heap::kTrueValueRootIndex);
|
| - __ Branch(&success, eq, object, Operand(at));
|
| - __ LoadRoot(at, Heap::kFalseValueRootIndex);
|
| - __ Branch(miss, ne, object, Operand(at));
|
| - __ bind(&success);
|
| -}
|
| -
|
| -
|
| Handle<Code> StoreStubCompiler::CompileStoreCallback(
|
| Handle<JSObject> object,
|
| Handle<JSObject> holder,
|
|
|