Index: src/x64/lithium-x64.h |
diff --git a/src/x64/lithium-x64.h b/src/x64/lithium-x64.h |
index 1f2ddd229a23bf11acffe45a1d97e871263e84a7..6da20849c242adb249333ac6a91ef4ce0a815ab9 100644 |
--- a/src/x64/lithium-x64.h |
+++ b/src/x64/lithium-x64.h |
@@ -96,8 +96,6 @@ class LCodeGen; |
V(ForInPrepareMap) \ |
V(FunctionLiteral) \ |
V(GetCachedArrayIndex) \ |
- V(GlobalObject) \ |
- V(GlobalReceiver) \ |
V(Goto) \ |
V(HasCachedArrayIndexAndBranch) \ |
V(HasInstanceTypeAndBranch) \ |
@@ -1732,30 +1730,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; |
- } |
- |
- LOperand* context() { return inputs_[0]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(GlobalObject, "global-object") |
-}; |
- |
- |
-class LGlobalReceiver V8_FINAL : public LTemplateInstruction<1, 1, 0> { |
- public: |
- explicit LGlobalReceiver(LOperand* global_object) { |
- inputs_[0] = global_object; |
- } |
- |
- LOperand* global() { return inputs_[0]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(GlobalReceiver, "global-receiver") |
-}; |
- |
- |
class LCallJSFunction V8_FINAL : public LTemplateInstruction<1, 1, 0> { |
public: |
explicit LCallJSFunction(LOperand* function) { |