| Index: src/ppc/builtins-ppc.cc
|
| diff --git a/src/ppc/builtins-ppc.cc b/src/ppc/builtins-ppc.cc
|
| index 5f2d642ce54ef6f0ff21f1b1836c618c63fcbc79..0f251f21e46a37f0ffe402bca82ea2d0ee7f5593 100644
|
| --- a/src/ppc/builtins-ppc.cc
|
| +++ b/src/ppc/builtins-ppc.cc
|
| @@ -1771,28 +1771,6 @@ void Builtins::Generate_DatePrototype_GetField(MacroAssembler* masm,
|
| }
|
|
|
| // static
|
| -void Builtins::Generate_FunctionHasInstance(MacroAssembler* masm) {
|
| - // ----------- S t a t e -------------
|
| - // -- r3 : argc
|
| - // -- sp[0] : first argument (left-hand side)
|
| - // -- sp[4] : receiver (right-hand side)
|
| - // -----------------------------------
|
| -
|
| - {
|
| - FrameScope scope(masm, StackFrame::INTERNAL);
|
| - __ LoadP(InstanceOfDescriptor::LeftRegister(),
|
| - MemOperand(fp, 2 * kPointerSize)); // Load left-hand side.
|
| - __ LoadP(InstanceOfDescriptor::RightRegister(),
|
| - MemOperand(fp, 3 * kPointerSize)); // Load right-hand side.
|
| - InstanceOfStub stub(masm->isolate(), true);
|
| - __ CallStub(&stub);
|
| - }
|
| -
|
| - // Pop the argument and the receiver.
|
| - __ Ret(2);
|
| -}
|
| -
|
| -// static
|
| void Builtins::Generate_FunctionPrototypeApply(MacroAssembler* masm) {
|
| // ----------- S t a t e -------------
|
| // -- r3 : argc
|
|
|