Index: src/arm/lithium-arm.h |
diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h |
index 0fc30760da45fcef260e7ecc4a95cb260cc42c1a..6769513ce511d5ee030b829370b6aeb17e27be13 100644 |
--- a/src/arm/lithium-arm.h |
+++ b/src/arm/lithium-arm.h |
@@ -96,8 +96,6 @@ class LCodeGen; |
V(ForInPrepareMap) \ |
V(FunctionLiteral) \ |
V(GetCachedArrayIndex) \ |
- V(GlobalObject) \ |
- V(GlobalReceiver) \ |
V(Goto) \ |
V(HasCachedArrayIndexAndBranch) \ |
V(HasInstanceTypeAndBranch) \ |
@@ -1787,30 +1785,6 @@ class LDeclareGlobals V8_FINAL : public LTemplateInstruction<0, 1, 0> { |
}; |
-class LGlobalObject V8_FINAL : public LTemplateInstruction<1, 1, 0> { |
- public: |
- explicit LGlobalObject(LOperand* context) { |
- inputs_[0] = context; |
- } |
- |
- DECLARE_CONCRETE_INSTRUCTION(GlobalObject, "global-object") |
- |
- LOperand* context() { return inputs_[0]; } |
-}; |
- |
- |
-class LGlobalReceiver V8_FINAL : public LTemplateInstruction<1, 1, 0> { |
- public: |
- explicit LGlobalReceiver(LOperand* global_object) { |
- inputs_[0] = global_object; |
- } |
- |
- LOperand* global_object() { return inputs_[0]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(GlobalReceiver, "global-receiver") |
-}; |
- |
- |
class LCallJSFunction V8_FINAL : public LTemplateInstruction<1, 1, 0> { |
public: |
explicit LCallJSFunction(LOperand* function) { |