Index: src/crankshaft/mips/lithium-mips.cc |
diff --git a/src/crankshaft/mips/lithium-mips.cc b/src/crankshaft/mips/lithium-mips.cc |
index 695536b804858b9113d916f54de0885dff91d72b..e269be0f123784a049fb7aca0f421d411e55257d 100644 |
--- a/src/crankshaft/mips/lithium-mips.cc |
+++ b/src/crankshaft/mips/lithium-mips.cc |
@@ -255,13 +255,6 @@ void LInnerAllocatedObject::PrintDataTo(StringStream* stream) { |
} |
-void LCallJSFunction::PrintDataTo(StringStream* stream) { |
- stream->Add("= "); |
- function()->PrintTo(stream); |
- stream->Add("#%d / ", arity()); |
-} |
- |
- |
void LCallWithDescriptor::PrintDataTo(StringStream* stream) { |
for (int i = 0; i < InputCount(); i++) { |
InputAt(i)->PrintTo(stream); |
@@ -1050,16 +1043,6 @@ LInstruction* LChunkBuilder::DoDeclareGlobals(HDeclareGlobals* instr) { |
} |
-LInstruction* LChunkBuilder::DoCallJSFunction( |
- HCallJSFunction* instr) { |
- LOperand* function = UseFixed(instr->function(), a1); |
- |
- LCallJSFunction* result = new(zone()) LCallJSFunction(function); |
- |
- return MarkAsCall(DefineFixed(result, v0), instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoCallWithDescriptor( |
HCallWithDescriptor* instr) { |
CallInterfaceDescriptor descriptor = instr->descriptor(); |