| Index: src/ia32/lithium-ia32.cc
|
| diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc
|
| index 1c8d075dcb8713e8ff40ccc3cf3de3bf8b8d6d77..51a9b62fb25b1fda34be603146569fc310595329 100644
|
| --- a/src/ia32/lithium-ia32.cc
|
| +++ b/src/ia32/lithium-ia32.cc
|
| @@ -271,20 +271,6 @@
|
| base_object()->PrintTo(stream);
|
| stream->Add(" + ");
|
| offset()->PrintTo(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(")");
|
| - }
|
| }
|
|
|
|
|
| @@ -1295,15 +1281,7 @@
|
| 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);
|
| + LCallFunction* call = new(zone()) LCallFunction(context, function);
|
| return MarkAsCall(DefineFixed(call, eax), instr);
|
| }
|
|
|
|
|