Commit 4529dd81 authored by danno@chromium.org's avatar danno@chromium.org

Fix improper usage of V8_OVERRIDE.

R=jkummerow@chromium.org

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

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@17077 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 7fc8679c
......@@ -1185,7 +1185,7 @@ class HControlInstruction : public HInstruction {
virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
virtual bool KnownSuccessorBlock(HBasicBlock** block) V8_OVERRIDE {
virtual bool KnownSuccessorBlock(HBasicBlock** block) {
*block = NULL;
return false;
}
......@@ -1323,7 +1323,7 @@ class HDeoptimize V8_FINAL : public HTemplateControlInstruction<1, 0> {
return new(zone) HDeoptimize(reason, type, unreachable_continuation);
}
virtual bool KnownSuccessorBlock(HBasicBlock** block) {
virtual bool KnownSuccessorBlock(HBasicBlock** block) V8_OVERRIDE {
*block = NULL;
return true;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment