Index: src/mips/lithium-mips.h |
diff --git a/src/mips/lithium-mips.h b/src/mips/lithium-mips.h |
index 19af84fb7b0438c821a25b3316419dfc496a1835..75ab77dacebea31efbdde3ef6055d8de02965be6 100644 |
--- a/src/mips/lithium-mips.h |
+++ b/src/mips/lithium-mips.h |
@@ -68,7 +68,6 @@ class LCodeGen; |
V(CheckMaps) \ |
V(CheckMapValue) \ |
V(CheckNonSmi) \ |
- V(CheckPrototypeMaps) \ |
V(CheckSmi) \ |
V(ClampDToUint8) \ |
V(ClampIToUint8) \ |
@@ -2324,26 +2323,6 @@ class LCheckMaps: public LTemplateInstruction<0, 1, 0> { |
}; |
-class LCheckPrototypeMaps: public LTemplateInstruction<0, 0, 2> { |
- public: |
- LCheckPrototypeMaps(LOperand* temp, LOperand* temp2) { |
- temps_[0] = temp; |
- temps_[1] = temp2; |
- } |
- |
- LOperand* temp() { return temps_[0]; } |
- LOperand* temp2() { return temps_[1]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(CheckPrototypeMaps, "check-prototype-maps") |
- DECLARE_HYDROGEN_ACCESSOR(CheckPrototypeMaps) |
- |
- ZoneList<Handle<JSObject> >* prototypes() const { |
- return hydrogen()->prototypes(); |
- } |
- ZoneList<Handle<Map> >* maps() const { return hydrogen()->maps(); } |
-}; |
- |
- |
class LCheckSmi: public LTemplateInstruction<1, 1, 0> { |
public: |
explicit LCheckSmi(LOperand* value) { |