| Index: src/crankshaft/mips/lithium-mips.cc
|
| diff --git a/src/crankshaft/mips/lithium-mips.cc b/src/crankshaft/mips/lithium-mips.cc
|
| index db1938eddff39d13bd40abd95b26aa66970b1ace..4370d665e275e688e7b9193a182b343d4784928e 100644
|
| --- a/src/crankshaft/mips/lithium-mips.cc
|
| +++ b/src/crankshaft/mips/lithium-mips.cc
|
| @@ -305,13 +305,6 @@ void LInvokeFunction::PrintDataTo(StringStream* stream) {
|
| }
|
|
|
|
|
| -void LCallNew::PrintDataTo(StringStream* stream) {
|
| - stream->Add("= ");
|
| - constructor()->PrintTo(stream);
|
| - stream->Add(" #%d / ", arity());
|
| -}
|
| -
|
| -
|
| void LCallNewArray::PrintDataTo(StringStream* stream) {
|
| stream->Add("= ");
|
| constructor()->PrintTo(stream);
|
| @@ -1221,14 +1214,6 @@ LInstruction* LChunkBuilder::DoMathRound(HUnaryMathOperation* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoCallNew(HCallNew* instr) {
|
| - LOperand* context = UseFixed(instr->context(), cp);
|
| - LOperand* constructor = UseFixed(instr->constructor(), a1);
|
| - LCallNew* result = new(zone()) LCallNew(context, constructor);
|
| - return MarkAsCall(DefineFixed(result, v0), instr);
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoCallNewArray(HCallNewArray* instr) {
|
| LOperand* context = UseFixed(instr->context(), cp);
|
| LOperand* constructor = UseFixed(instr->constructor(), a1);
|
|
|