Index: src/crankshaft/arm64/lithium-arm64.cc |
diff --git a/src/crankshaft/arm64/lithium-arm64.cc b/src/crankshaft/arm64/lithium-arm64.cc |
index c5d42082bd9b10f1e0c9b37139d18ef5d8d30e6a..f040690fbdeb1b46032751e1a507b97ccc0c80da 100644 |
--- a/src/crankshaft/arm64/lithium-arm64.cc |
+++ b/src/crankshaft/arm64/lithium-arm64.cc |
@@ -135,20 +135,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 LInvokeFunction::PrintDataTo(StringStream* stream) { |
stream->Add("= "); |
function()->PrintTo(stream); |
@@ -1049,22 +1035,6 @@ LInstruction* LChunkBuilder::DoCallWithDescriptor( |
} |
-LInstruction* LChunkBuilder::DoCallFunction(HCallFunction* instr) { |
- LOperand* context = UseFixed(instr->context(), cp); |
- LOperand* function = UseFixed(instr->function(), x1); |
- LOperand* slot = NULL; |
- LOperand* vector = NULL; |
- if (instr->HasVectorAndSlot()) { |
- slot = FixedTemp(x3); |
- vector = FixedTemp(x2); |
- } |
- |
- LCallFunction* call = |
- new (zone()) LCallFunction(context, function, slot, vector); |
- return MarkAsCall(DefineFixed(call, x0), instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoCallNewArray(HCallNewArray* instr) { |
LOperand* context = UseFixed(instr->context(), cp); |
// The call to ArrayConstructCode will expect the constructor to be in x1. |