Fix Win32 buildbreak (caused by overriden methods that have disappeared
authorjarin@chromium.org <jarin@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Wed, 15 Jan 2014 17:51:09 +0000 (17:51 +0000)
committerjarin@chromium.org <jarin@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Wed, 15 Jan 2014 17:51:09 +0000 (17:51 +0000)
while having the patch out for code review).

R=danno@chromium.org
BUG=

Review URL: https://codereview.chromium.org/136303004

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@18627 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

src/arm/lithium-arm.h
src/hydrogen-instructions.h
src/ia32/lithium-ia32.h
src/x64/lithium-x64.h

index e2df289040dbb5e9a4e96b3b44e1f53ae0851268..2cb4ff40e82199e4d273165b1b39c35318c29bef 100644 (file)
@@ -1882,11 +1882,6 @@ class LCallWithDescriptor V8_FINAL : public LTemplateResultInstruction<1> {
   const CallInterfaceDescriptor* descriptor_;
   ZoneList<LOperand*> inputs_;
 
-  virtual void InternalSetOperandAt(int index,
-                                    LOperand* value) V8_FINAL V8_OVERRIDE {
-    inputs_[index] = value;
-  }
-
   // Iterator support.
   virtual int InputCount() V8_FINAL V8_OVERRIDE { return inputs_.length(); }
   virtual LOperand* InputAt(int i) V8_FINAL V8_OVERRIDE { return inputs_[i]; }
index 79d8ab64420a8d40a4103ea41d26c80a9de25e2b..a19c3ee507908c45e891f6d2baab33e763ae3c2e 100644 (file)
@@ -2372,8 +2372,6 @@ class HCallWithDescriptor V8_FINAL : public HInstruction {
     return OperandAt(0);
   }
 
-  virtual bool IsCall() V8_FINAL V8_OVERRIDE { return true; }
-
   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
 
  private:
index 44210b0963c5a1a5e56106dbad3cdd95b891d6a2..c6f95ad9cc5f03b92e95ae2ca7be9230d778702d 100644 (file)
@@ -1871,7 +1871,6 @@ class LCallWithDescriptor V8_FINAL : public LTemplateResultInstruction<1> {
 
   LOperand* target() const { return inputs_[0]; }
 
-
  private:
   DECLARE_CONCRETE_INSTRUCTION(CallWithDescriptor, "call-with-descriptor")
   DECLARE_HYDROGEN_ACCESSOR(CallWithDescriptor)
@@ -1883,11 +1882,6 @@ class LCallWithDescriptor V8_FINAL : public LTemplateResultInstruction<1> {
   const CallInterfaceDescriptor* descriptor_;
   ZoneList<LOperand*> inputs_;
 
-  virtual void InternalSetOperandAt(int index,
-                                    LOperand* value) V8_FINAL V8_OVERRIDE {
-    inputs_[index] = value;
-  }
-
   // Iterator support.
   virtual int InputCount() V8_FINAL V8_OVERRIDE { return inputs_.length(); }
   virtual LOperand* InputAt(int i) V8_FINAL V8_OVERRIDE { return inputs_[i]; }
index 70c86fd82d33533ce487be351e61597f155fc798..f337e9f0de071c119aad69a765e1c4ef5add51d2 100644 (file)
@@ -1816,7 +1816,6 @@ class LCallWithDescriptor V8_FINAL : public LTemplateResultInstruction<1> {
 
   LOperand* target() const { return inputs_[0]; }
 
-
  private:
   DECLARE_CONCRETE_INSTRUCTION(CallWithDescriptor, "call-with-descriptor")
   DECLARE_HYDROGEN_ACCESSOR(CallWithDescriptor)
@@ -1828,11 +1827,6 @@ class LCallWithDescriptor V8_FINAL : public LTemplateResultInstruction<1> {
   const CallInterfaceDescriptor* descriptor_;
   ZoneList<LOperand*> inputs_;
 
-  virtual void InternalSetOperandAt(int index,
-                                    LOperand* value) V8_FINAL V8_OVERRIDE {
-    inputs_[index] = value;
-  }
-
   // Iterator support.
   virtual int InputCount() V8_FINAL V8_OVERRIDE { return inputs_.length(); }
   virtual LOperand* InputAt(int i) V8_FINAL V8_OVERRIDE { return inputs_[i]; }