| Index: src/crankshaft/x87/lithium-x87.cc
|
| diff --git a/src/crankshaft/x87/lithium-x87.cc b/src/crankshaft/x87/lithium-x87.cc
|
| index 7a5cdfb39102bd3a27afb899133df73f217384f3..211ac6d7e1c2f21207c55684c3f679217d539246 100644
|
| --- a/src/crankshaft/x87/lithium-x87.cc
|
| +++ b/src/crankshaft/x87/lithium-x87.cc
|
| @@ -330,15 +330,6 @@ void LInvokeFunction::PrintDataTo(StringStream* stream) {
|
| }
|
|
|
|
|
| -void LCallNew::PrintDataTo(StringStream* stream) {
|
| - stream->Add("= ");
|
| - context()->PrintTo(stream);
|
| - stream->Add(" ");
|
| - constructor()->PrintTo(stream);
|
| - stream->Add(" #%d / ", arity());
|
| -}
|
| -
|
| -
|
| void LCallNewArray::PrintDataTo(StringStream* stream) {
|
| stream->Add("= ");
|
| context()->PrintTo(stream);
|
| @@ -1262,14 +1253,6 @@ LInstruction* LChunkBuilder::DoMathPowHalf(HUnaryMathOperation* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoCallNew(HCallNew* instr) {
|
| - LOperand* context = UseFixed(instr->context(), esi);
|
| - LOperand* constructor = UseFixed(instr->constructor(), edi);
|
| - LCallNew* result = new(zone()) LCallNew(context, constructor);
|
| - return MarkAsCall(DefineFixed(result, eax), instr);
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoCallNewArray(HCallNewArray* instr) {
|
| LOperand* context = UseFixed(instr->context(), esi);
|
| LOperand* constructor = UseFixed(instr->constructor(), edi);
|
|
|