Index: src/crankshaft/x87/lithium-x87.cc |
diff --git a/src/crankshaft/x87/lithium-x87.cc b/src/crankshaft/x87/lithium-x87.cc |
index f770509076cc137a83b62bf6b9b9839df3d74642..85070193744f827332c1024c66b52bbe5aa872ab 100644 |
--- a/src/crankshaft/x87/lithium-x87.cc |
+++ b/src/crankshaft/x87/lithium-x87.cc |
@@ -278,20 +278,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); |
@@ -1263,22 +1249,6 @@ LInstruction* LChunkBuilder::DoCallNewArray(HCallNewArray* instr) { |
} |
-LInstruction* LChunkBuilder::DoCallFunction(HCallFunction* instr) { |
- LOperand* context = UseFixed(instr->context(), esi); |
- LOperand* function = UseFixed(instr->function(), edi); |
- LOperand* slot = NULL; |
- LOperand* vector = NULL; |
- if (instr->HasVectorAndSlot()) { |
- slot = FixedTemp(edx); |
- vector = FixedTemp(ebx); |
- } |
- |
- LCallFunction* call = |
- new (zone()) LCallFunction(context, function, slot, vector); |
- return MarkAsCall(DefineFixed(call, eax), instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoCallRuntime(HCallRuntime* instr) { |
LOperand* context = UseFixed(instr->context(), esi); |
return MarkAsCall(DefineFixed(new(zone()) LCallRuntime(context), eax), instr); |