| Index: src/crankshaft/arm64/lithium-arm64.cc
|
| diff --git a/src/crankshaft/arm64/lithium-arm64.cc b/src/crankshaft/arm64/lithium-arm64.cc
|
| index e8a8dfcef80d97b581aaba353471711dcb4e4ba5..73f6656ae60dbde80e75f0670b124667421d1ea4 100644
|
| --- a/src/crankshaft/arm64/lithium-arm64.cc
|
| +++ b/src/crankshaft/arm64/lithium-arm64.cc
|
| @@ -82,13 +82,6 @@ void LCallWithDescriptor::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);
|
| @@ -1076,15 +1069,6 @@ LInstruction* LChunkBuilder::DoCallFunction(HCallFunction* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoCallNew(HCallNew* instr) {
|
| - LOperand* context = UseFixed(instr->context(), cp);
|
| - // The call to CallConstructStub will expect the constructor to be in x1.
|
| - LOperand* constructor = UseFixed(instr->constructor(), x1);
|
| - LCallNew* result = new(zone()) LCallNew(context, constructor);
|
| - return MarkAsCall(DefineFixed(result, x0), instr);
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoCallNewArray(HCallNewArray* instr) {
|
| LOperand* context = UseFixed(instr->context(), cp);
|
| // The call to ArrayConstructCode will expect the constructor to be in x1.
|
|
|