From 806368bc924c2bc62a8c7876f9dc92cdabbb32f6 Mon Sep 17 00:00:00 2001 From: "sgjesse@chromium.org" Date: Tue, 4 Jan 2011 14:35:34 +0000 Subject: [PATCH] Fix presumbit error TBR=karlklose@chromium.org Review URL: http://codereview.chromium.org/6046012 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@6164 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/arm/lithium-arm.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h index ec76ca0370..2f8cc1c7f3 100644 --- a/src/arm/lithium-arm.h +++ b/src/arm/lithium-arm.h @@ -1253,7 +1253,8 @@ class LLoadNamedGeneric: public LUnaryOperation { 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)