Reviewers: Benedikt Meurer,

Description:
Fix check style breakage.

BUG=

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

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

Affected files:
  M src/hydrogen.h


Index: src/hydrogen.h
diff --git a/src/hydrogen.h b/src/hydrogen.h
index 086f830faf7769350484c5b44c26f195412f448f..444e3fb13742fa961ab3fc345f6dceb2df71686b 100644
--- a/src/hydrogen.h
+++ b/src/hydrogen.h
@@ -428,7 +428,10 @@ class HGraph: public ZoneObject {
                          int32_t integer_value);

   template<class Phase>
-  void Run() { Phase phase(this); phase.Run(); }
+  void Run() {
+    Phase phase(this);
+    phase.Run();
+  }

   void MarkLive(HValue* ref, HValue* instr, ZoneList<HValue*>* worklist);
   void MarkLiveInstructions();


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