| Index: src/crankshaft/ia32/lithium-ia32.cc
|
| diff --git a/src/crankshaft/ia32/lithium-ia32.cc b/src/crankshaft/ia32/lithium-ia32.cc
|
| index aa022f48c6f36cfd79b28f21b1df88d5ef4cf6f1..a7ea51489a54c6358c0e055385258c662e0ab06b 100644
|
| --- a/src/crankshaft/ia32/lithium-ia32.cc
|
| +++ b/src/crankshaft/ia32/lithium-ia32.cc
|
| @@ -267,13 +267,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);
|
| @@ -1079,16 +1072,6 @@ LInstruction* LChunkBuilder::DoDeclareGlobals(HDeclareGlobals* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoCallJSFunction(
|
| - HCallJSFunction* instr) {
|
| - LOperand* function = UseFixed(instr->function(), edi);
|
| -
|
| - LCallJSFunction* result = new(zone()) LCallJSFunction(function);
|
| -
|
| - return MarkAsCall(DefineFixed(result, eax), instr, CANNOT_DEOPTIMIZE_EAGERLY);
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoCallWithDescriptor(
|
| HCallWithDescriptor* instr) {
|
| CallInterfaceDescriptor descriptor = instr->descriptor();
|
|
|