| Index: src/crankshaft/arm/lithium-arm.cc
|
| diff --git a/src/crankshaft/arm/lithium-arm.cc b/src/crankshaft/arm/lithium-arm.cc
|
| index 4fd7e5346292a77653834a095d1ed8dd9129a7c1..fc141aaed52c8e3c054b2a9eb009f74e8c246ad6 100644
|
| --- a/src/crankshaft/arm/lithium-arm.cc
|
| +++ b/src/crankshaft/arm/lithium-arm.cc
|
| @@ -298,13 +298,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);
|
| @@ -1213,14 +1206,6 @@ LInstruction* LChunkBuilder::DoMathPowHalf(HUnaryMathOperation* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoCallNew(HCallNew* instr) {
|
| - LOperand* context = UseFixed(instr->context(), cp);
|
| - LOperand* constructor = UseFixed(instr->constructor(), r1);
|
| - LCallNew* result = new(zone()) LCallNew(context, constructor);
|
| - return MarkAsCall(DefineFixed(result, r0), instr);
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoCallNewArray(HCallNewArray* instr) {
|
| LOperand* context = UseFixed(instr->context(), cp);
|
| LOperand* constructor = UseFixed(instr->constructor(), r1);
|
|
|