Index: src/crankshaft/mips64/lithium-mips64.cc |
diff --git a/src/crankshaft/mips64/lithium-mips64.cc b/src/crankshaft/mips64/lithium-mips64.cc |
index 1f07de46042667d8f1d3d99eeee8099b4baa4bec..fc172d53990942426b05e79c0ada484461c90b0a 100644 |
--- a/src/crankshaft/mips64/lithium-mips64.cc |
+++ b/src/crankshaft/mips64/lithium-mips64.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(); |