Index: src/ppc/lithium-ppc.cc |
diff --git a/src/ppc/lithium-ppc.cc b/src/ppc/lithium-ppc.cc |
index 1c45eb7f4d3e4bcb780a09cec8604834967b8f88..53ebbd087bf4de88c089d0c4c2c9c686f8033641 100644 |
--- a/src/ppc/lithium-ppc.cc |
+++ b/src/ppc/lithium-ppc.cc |
@@ -1111,20 +1111,6 @@ LInstruction* LChunkBuilder::DoCallWithDescriptor(HCallWithDescriptor* instr) { |
} |
-LInstruction* LChunkBuilder::DoTailCallThroughMegamorphicCache( |
- HTailCallThroughMegamorphicCache* instr) { |
- LOperand* context = UseFixed(instr->context(), cp); |
- LOperand* receiver_register = |
- UseFixed(instr->receiver(), LoadDescriptor::ReceiverRegister()); |
- LOperand* name_register = |
- UseFixed(instr->name(), LoadDescriptor::NameRegister()); |
- |
- // Not marked as call. It can't deoptimize, and it never returns. |
- return new (zone()) LTailCallThroughMegamorphicCache( |
- context, receiver_register, name_register); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoInvokeFunction(HInvokeFunction* instr) { |
LOperand* context = UseFixed(instr->context(), cp); |
LOperand* function = UseFixed(instr->function(), r4); |