| Index: src/crankshaft/x87/lithium-x87.cc
|
| diff --git a/src/crankshaft/x87/lithium-x87.cc b/src/crankshaft/x87/lithium-x87.cc
|
| index 85070193744f827332c1024c66b52bbe5aa872ab..433559daa992b27227d8dffe0f0d3c522b04a136 100644
|
| --- a/src/crankshaft/x87/lithium-x87.cc
|
| +++ b/src/crankshaft/x87/lithium-x87.cc
|
| @@ -278,13 +278,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);
|
| @@ -1104,16 +1097,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();
|
|
|