Index: src/crankshaft/mips/lithium-mips.cc |
diff --git a/src/crankshaft/mips/lithium-mips.cc b/src/crankshaft/mips/lithium-mips.cc |
index a7c5488d048caa84440223d119fe047369b66901..695536b804858b9113d916f54de0885dff91d72b 100644 |
--- a/src/crankshaft/mips/lithium-mips.cc |
+++ b/src/crankshaft/mips/lithium-mips.cc |
@@ -255,20 +255,6 @@ void LInnerAllocatedObject::PrintDataTo(StringStream* stream) { |
} |
-void LCallFunction::PrintDataTo(StringStream* stream) { |
- context()->PrintTo(stream); |
- stream->Add(" "); |
- function()->PrintTo(stream); |
- if (hydrogen()->HasVectorAndSlot()) { |
- stream->Add(" (type-feedback-vector "); |
- temp_vector()->PrintTo(stream); |
- stream->Add(" "); |
- temp_slot()->PrintTo(stream); |
- stream->Add(")"); |
- } |
-} |
- |
- |
void LCallJSFunction::PrintDataTo(StringStream* stream) { |
stream->Add("= "); |
function()->PrintTo(stream); |
@@ -1224,22 +1210,6 @@ LInstruction* LChunkBuilder::DoCallNewArray(HCallNewArray* instr) { |
} |
-LInstruction* LChunkBuilder::DoCallFunction(HCallFunction* instr) { |
- LOperand* context = UseFixed(instr->context(), cp); |
- LOperand* function = UseFixed(instr->function(), a1); |
- LOperand* slot = NULL; |
- LOperand* vector = NULL; |
- if (instr->HasVectorAndSlot()) { |
- slot = FixedTemp(a3); |
- vector = FixedTemp(a2); |
- } |
- |
- LCallFunction* call = |
- new (zone()) LCallFunction(context, function, slot, vector); |
- return MarkAsCall(DefineFixed(call, v0), instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoCallRuntime(HCallRuntime* instr) { |
LOperand* context = UseFixed(instr->context(), cp); |
return MarkAsCall(DefineFixed(new(zone()) LCallRuntime(context), v0), instr); |