| Index: src/a64/lithium-a64.h
|
| diff --git a/src/a64/lithium-a64.h b/src/a64/lithium-a64.h
|
| index 20d9cc23c4832dafca3402802df4629c3b12e3d3..a643394c79750c67b13e49bc9a20fb49aa8cd18b 100644
|
| --- a/src/a64/lithium-a64.h
|
| +++ b/src/a64/lithium-a64.h
|
| @@ -50,7 +50,6 @@ class LCodeGen;
|
| V(AccessArgumentsAt) \
|
| V(AddI) \
|
| V(Allocate) \
|
| - V(AllocateObject) \
|
| V(ApplyArguments) \
|
| V(ArgumentsElements) \
|
| V(ArgumentsLength) \
|
| @@ -604,24 +603,6 @@ class LAllocate: public LTemplateInstruction<1, 1, 2> {
|
| };
|
|
|
|
|
| -class LAllocateObject: public LTemplateInstruction<1, 0, 2> {
|
| - public:
|
| - // TODO(jbramley): On ia32, this takes a context, and it is used by the
|
| - // deferred code. On ARM, an LOperand is allocated for another input, but it
|
| - // is never used, and the deferred code doesn't need the context. Why?
|
| - LAllocateObject(LOperand* temp1, LOperand* temp2) {
|
| - temps_[0] = temp1;
|
| - temps_[1] = temp2;
|
| - }
|
| -
|
| - LOperand* temp1() { return temps_[0]; }
|
| - LOperand* temp2() { return temps_[1]; }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(AllocateObject, "allocate-object")
|
| - DECLARE_HYDROGEN_ACCESSOR(AllocateObject)
|
| -};
|
| -
|
| -
|
| class LApplyArguments: public LTemplateInstruction<1, 4, 0> {
|
| public:
|
| LApplyArguments(LOperand* function,
|
|
|