Reviewers: Karl Klose,

Description:
Fix presumbit error

[email protected]

Please review this at http://codereview.chromium.org/6046012/

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

Affected files:
  M     src/arm/lithium-arm.h


Index: src/arm/lithium-arm.h
===================================================================
--- src/arm/lithium-arm.h       (revision 6162)
+++ src/arm/lithium-arm.h       (working copy)
@@ -1253,7 +1253,8 @@

 class LLoadFunctionPrototype: public LUnaryOperation {
  public:
- LLoadFunctionPrototype(LOperand* function) : LUnaryOperation(function) { }
+  explicit LLoadFunctionPrototype(LOperand* function)
+      : LUnaryOperation(function) { }

DECLARE_CONCRETE_INSTRUCTION(LoadFunctionPrototype, "load-function-prototype")
   DECLARE_HYDROGEN_ACCESSOR(LoadFunctionPrototype)


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to