| Index: src/compiler/pipeline.cc
|
| diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc
|
| index 8a31843ed081df16219d360758f4cb85ba0ddb65..7f3447efdff9a2ab1f5a26ce56e7694afe80b1f9 100644
|
| --- a/src/compiler/pipeline.cc
|
| +++ b/src/compiler/pipeline.cc
|
| @@ -1207,8 +1207,8 @@ Handle<Code> Pipeline::GenerateCodeForCodeStub(Isolate* isolate,
|
| CallDescriptor* call_descriptor,
|
| Graph* graph, Schedule* schedule,
|
| Code::Kind kind,
|
| - const char* code_stub_name) {
|
| - CompilationInfo info(code_stub_name, isolate, graph->zone());
|
| + const char* debug_name) {
|
| + CompilationInfo info(debug_name, isolate, graph->zone());
|
| info.set_output_code_kind(kind);
|
|
|
| // Construct a pipeline for scheduling and code generation.
|
| @@ -1217,7 +1217,7 @@ Handle<Code> Pipeline::GenerateCodeForCodeStub(Isolate* isolate,
|
| base::SmartPointer<PipelineStatistics> pipeline_statistics;
|
| if (FLAG_turbo_stats) {
|
| pipeline_statistics.Reset(new PipelineStatistics(&info, &zone_pool));
|
| - pipeline_statistics->BeginPhaseKind("interpreter handler codegen");
|
| + pipeline_statistics->BeginPhaseKind("stub codegen");
|
| }
|
|
|
| Pipeline pipeline(&info);
|
|
|