From 7dcaa2652ac4642e006880aad6e32abb46e6a5b9 Mon Sep 17 00:00:00 2001 From: Dan Carney Date: Wed, 19 Nov 2014 09:55:13 +0100 Subject: [PATCH] fix typo in pipeline.cc TBR=bmeurer@chromium.org BUG= Review URL: https://codereview.chromium.org/743603003 Cr-Commit-Position: refs/heads/master@{#25413} --- src/compiler/pipeline.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc index 4c76701992..d237c4a076 100644 --- a/src/compiler/pipeline.cc +++ b/src/compiler/pipeline.cc @@ -638,7 +638,7 @@ struct VerifyGraphPhase { void Pipeline::BeginPhaseKind(const char* phase_kind_name) { if (data_->pipeline_statistics() != NULL) { - data_->pipeline_statistics()->BeginPhaseKind("phase_kind_name"); + data_->pipeline_statistics()->BeginPhaseKind(phase_kind_name); } }