Reviewers: Jakob,

Message:
PTAL

Description:
Fix improper usage of V8_OVERRIDE.

Please review this at https://codereview.chromium.org/25715002/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+2, -2 lines):
  M src/hydrogen-instructions.h


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


--
--
v8-dev mailing list
v8-dev@googlegroups.com
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 v8-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to