Index: src/hydrogen-instructions.h |
diff --git a/src/hydrogen-instructions.h b/src/hydrogen-instructions.h |
index cef6b10901c3952180c21c157d68a65a31bd3aa8..1bd350efbaf30b79ab5006af93db446dbfdacfc0 100644 |
--- a/src/hydrogen-instructions.h |
+++ b/src/hydrogen-instructions.h |
@@ -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; |
} |