| Index: src/crankshaft/x64/lithium-x64.cc
|
| diff --git a/src/crankshaft/x64/lithium-x64.cc b/src/crankshaft/x64/lithium-x64.cc
|
| index 566ba2f191662444422add9bcf9bb980e5a07e61..1a69bc77a83647b17c08d07964afa8f3d83651f2 100644
|
| --- a/src/crankshaft/x64/lithium-x64.cc
|
| +++ b/src/crankshaft/x64/lithium-x64.cc
|
| @@ -261,13 +261,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);
|
| @@ -1067,16 +1060,6 @@ LInstruction* LChunkBuilder::DoDeclareGlobals(HDeclareGlobals* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoCallJSFunction(
|
| - HCallJSFunction* instr) {
|
| - LOperand* function = UseFixed(instr->function(), rdi);
|
| -
|
| - LCallJSFunction* result = new(zone()) LCallJSFunction(function);
|
| -
|
| - return MarkAsCall(DefineFixed(result, rax), instr);
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoCallWithDescriptor(
|
| HCallWithDescriptor* instr) {
|
| CallInterfaceDescriptor descriptor = instr->descriptor();
|
|
|