From c916e8cfa7efc1e6cadc49b593a65d53d29d54c0 Mon Sep 17 00:00:00 2001 From: Benedikt Meurer Date: Wed, 14 Jan 2015 14:49:35 +0100 Subject: [PATCH] Remove stray + character. TBR=jarin@chromium.org Review URL: https://codereview.chromium.org/847383002 Cr-Commit-Position: refs/heads/master@{#26055} --- src/compiler/simplified-lowering.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/simplified-lowering.cc b/src/compiler/simplified-lowering.cc index 2c81423..d7157f6 100644 --- a/src/compiler/simplified-lowering.cc +++ b/src/compiler/simplified-lowering.cc @@ -743,7 +743,7 @@ class RepresentationSelector { callable.descriptor(), 0, flags, properties, jsgraph_->zone()); node->set_op(jsgraph_->common()->Call(desc)); node->InsertInput(jsgraph_->zone(), 0, - +jsgraph_->HeapConstant(callable.code())); + jsgraph_->HeapConstant(callable.code())); node->AppendInput(jsgraph_->zone(), jsgraph_->NoContextConstant()); } break; -- 2.7.4