Revision: 18627
Author:   [email protected]
Date:     Wed Jan 15 17:51:09 2014 UTC
Log: Fix Win32 buildbreak (caused by overriden methods that have disappeared
while having the patch out for code review).

[email protected]
BUG=

Review URL: https://codereview.chromium.org/136303004
http://code.google.com/p/v8/source/detail?r=18627

Modified:
 /branches/bleeding_edge/src/arm/lithium-arm.h
 /branches/bleeding_edge/src/hydrogen-instructions.h
 /branches/bleeding_edge/src/ia32/lithium-ia32.h
 /branches/bleeding_edge/src/x64/lithium-x64.h

=======================================
--- /branches/bleeding_edge/src/arm/lithium-arm.h Wed Jan 15 17:00:35 2014 UTC +++ /branches/bleeding_edge/src/arm/lithium-arm.h Wed Jan 15 17:51:09 2014 UTC
@@ -1881,11 +1881,6 @@

   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(); }
=======================================
--- /branches/bleeding_edge/src/hydrogen-instructions.h Wed Jan 15 17:00:35 2014 UTC +++ /branches/bleeding_edge/src/hydrogen-instructions.h Wed Jan 15 17:51:09 2014 UTC
@@ -2371,8 +2371,6 @@
   HValue* target() {
     return OperandAt(0);
   }
-
-  virtual bool IsCall() V8_FINAL V8_OVERRIDE { return true; }

   virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;

=======================================
--- /branches/bleeding_edge/src/ia32/lithium-ia32.h Wed Jan 15 17:00:35 2014 UTC +++ /branches/bleeding_edge/src/ia32/lithium-ia32.h Wed Jan 15 17:51:09 2014 UTC
@@ -1870,7 +1870,6 @@
   }

   LOperand* target() const { return inputs_[0]; }
-

  private:
   DECLARE_CONCRETE_INSTRUCTION(CallWithDescriptor, "call-with-descriptor")
@@ -1882,11 +1881,6 @@

   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(); }
=======================================
--- /branches/bleeding_edge/src/x64/lithium-x64.h Wed Jan 15 17:00:35 2014 UTC +++ /branches/bleeding_edge/src/x64/lithium-x64.h Wed Jan 15 17:51:09 2014 UTC
@@ -1815,7 +1815,6 @@
   }

   LOperand* target() const { return inputs_[0]; }
-

  private:
   DECLARE_CONCRETE_INSTRUCTION(CallWithDescriptor, "call-with-descriptor")
@@ -1827,11 +1826,6 @@

   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(); }

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to