| Index: src/a64/lithium-a64.cc
|
| diff --git a/src/a64/lithium-a64.cc b/src/a64/lithium-a64.cc
|
| index 8a1bdceba9e122280937412d00b16f1716f6b913..ce36c02925c262e92bc83a6fb039a08fe6ba129a 100644
|
| --- a/src/a64/lithium-a64.cc
|
| +++ b/src/a64/lithium-a64.cc
|
| @@ -105,7 +105,6 @@ void LCallNewArray::PrintDataTo(StringStream* stream) {
|
| stream->Add("= ");
|
| constructor()->PrintTo(stream);
|
| stream->Add(" #%d / ", arity());
|
| - ASSERT(hydrogen()->property_cell()->value()->IsSmi());
|
| ElementsKind kind = hydrogen()->elements_kind();
|
| stream->Add(" (%s) ", ElementsKindToString(kind));
|
| }
|
| @@ -883,14 +882,6 @@ LInstruction* LChunkBuilder::DoAllocate(HAllocate* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoAllocateObject(HAllocateObject* instr) {
|
| - info()->MarkAsDeferredCalling();
|
| - LAllocateObject* result =
|
| - new(zone()) LAllocateObject(TempRegister(), TempRegister());
|
| - return AssignPointerMap(DefineAsRegister(result));
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoApplyArguments(HApplyArguments* instr) {
|
| LOperand* function = UseFixed(instr->function(), x1);
|
| LOperand* receiver = UseFixed(instr->receiver(), x0);
|
|
|