Reviewers: danno,
Description:
Fix Win32 buildbreak (caused by overriden methods that have disappeared
while having the patch out for code review).
[email protected]
BUG=
Please review this at https://codereview.chromium.org/136303004/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files (+0, -17 lines):
M src/arm/lithium-arm.h
M src/hydrogen-instructions.h
M src/ia32/lithium-ia32.h
M src/x64/lithium-x64.h
Index: src/arm/lithium-arm.h
diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h
index
e2df289040dbb5e9a4e96b3b44e1f53ae0851268..2cb4ff40e82199e4d273165b1b39c35318c29bef
100644
--- a/src/arm/lithium-arm.h
+++ b/src/arm/lithium-arm.h
@@ -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: src/hydrogen-instructions.h
diff --git a/src/hydrogen-instructions.h b/src/hydrogen-instructions.h
index
79d8ab64420a8d40a4103ea41d26c80a9de25e2b..a19c3ee507908c45e891f6d2baab33e763ae3c2e
100644
--- a/src/hydrogen-instructions.h
+++ b/src/hydrogen-instructions.h
@@ -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: src/ia32/lithium-ia32.h
diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h
index
44210b0963c5a1a5e56106dbad3cdd95b891d6a2..10ed35d7b4606cc69f0a47801bfb9707601cf7a2
100644
--- a/src/ia32/lithium-ia32.h
+++ b/src/ia32/lithium-ia32.h
@@ -1883,11 +1883,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: src/x64/lithium-x64.h
diff --git a/src/x64/lithium-x64.h b/src/x64/lithium-x64.h
index
70c86fd82d33533ce487be351e61597f155fc798..554be5df28b445d4f9788f988514c94b7f40ef25
100644
--- a/src/x64/lithium-x64.h
+++ b/src/x64/lithium-x64.h
@@ -1828,11 +1828,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]; }
--
--
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.