Index: src/mips/lithium-mips.h |
diff --git a/src/mips/lithium-mips.h b/src/mips/lithium-mips.h |
index 01dd6c2438247ede4897620495f33a016a3ba994..50feee0cb7e26477797f7a8e93534ced62bf662f 100644 |
--- a/src/mips/lithium-mips.h |
+++ b/src/mips/lithium-mips.h |
@@ -49,7 +49,6 @@ class LCodeGen; |
#define LITHIUM_CONCRETE_INSTRUCTION_LIST(V) \ |
V(AccessArgumentsAt) \ |
V(AddI) \ |
- V(AllocateObject) \ |
V(Allocate) \ |
V(ApplyArguments) \ |
V(ArgumentsElements) \ |
@@ -2398,21 +2397,6 @@ class LClampTToUint8: public LTemplateInstruction<1, 1, 1> { |
}; |
-class LAllocateObject: public LTemplateInstruction<1, 1, 2> { |
- public: |
- LAllocateObject(LOperand* temp, LOperand* temp2) { |
- temps_[0] = temp; |
- temps_[1] = temp2; |
- } |
- |
- LOperand* temp() { return temps_[0]; } |
- LOperand* temp2() { return temps_[1]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(AllocateObject, "allocate-object") |
- DECLARE_HYDROGEN_ACCESSOR(AllocateObject) |
-}; |
- |
- |
class LAllocate: public LTemplateInstruction<1, 2, 2> { |
public: |
LAllocate(LOperand* size, LOperand* temp1, LOperand* temp2) { |