Index: src/arm/lithium-arm.h |
diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h |
index f52e3f713a312656836b9bbdf4794a05b4713214..3d7228e6284d911cf13f8b1dede09f38aa36c9c5 100644 |
--- a/src/arm/lithium-arm.h |
+++ b/src/arm/lithium-arm.h |
@@ -168,7 +168,6 @@ class LCodeGen; |
V(RSubI) \ |
V(TaggedToI) \ |
V(ThisFunction) \ |
- V(Throw) \ |
V(ToFastProperties) \ |
V(TransitionElementsKind) \ |
V(TrapAllocationMemento) \ |
@@ -1378,20 +1377,6 @@ class LSeqStringSetChar V8_FINAL : public LTemplateInstruction<1, 4, 0> { |
}; |
-class LThrow V8_FINAL : public LTemplateInstruction<0, 2, 0> { |
- public: |
- LThrow(LOperand* context, LOperand* value) { |
- inputs_[0] = context; |
- inputs_[1] = value; |
- } |
- |
- LOperand* context() { return inputs_[0]; } |
- LOperand* value() { return inputs_[1]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(Throw, "throw") |
-}; |
- |
- |
class LAddI V8_FINAL : public LTemplateInstruction<1, 2, 0> { |
public: |
LAddI(LOperand* left, LOperand* right) { |